mixkorshun / django-safe-filefield

Secure file field, which allows you to restrict uploaded file extensions.
MIT License
53 stars 10 forks source link

super().__init__(**kwargs) not working on python2 #9

Open marlonleite opened 4 years ago

marlonleite commented 4 years ago

An fixing: super().__init__(**kwargs) replace to: super(Classname, self).__init__(**kwargs)