Skip to content

Commit

Permalink
Fixed inheritance order in compat storage
Browse files Browse the repository at this point in the history
  • Loading branch information
maryokhin committed Mar 31, 2015
1 parent 426b821 commit dac530e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion storages/compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ def get_available_name(self, name, max_length=None):
class Storage(DjangoStorage, StorageMixin):
pass

class FileSystemStorage(StorageMixin, DjangoFileSystemStorage):
class FileSystemStorage(DjangoFileSystemStorage, StorageMixin):
pass

0 comments on commit dac530e

Please sign in to comment.