Skip to content

Commit

Permalink
really textmate? No soft tabs?
Browse files Browse the repository at this point in the history
  • Loading branch information
jamstooks committed Jul 3, 2012
1 parent 0016a74 commit ee9dd42
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions s3_folder_storage/s3.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@

class StaticStorage(S3BotoStorage):
"""
Storage for static files.
The folder is defined in settings.STATIC_S3_PATH
Storage for static files.
The folder is defined in settings.STATIC_S3_PATH
"""

def __init__(self, *args, **kwargs):
kwargs['location'] = settings.STATIC_S3_PATH
super(StaticStorage, self).__init__(*args, **kwargs)

class DefaultStorage(S3BotoStorage):
"""
Storage for uploaded media files.
The folder is defined in settings.DEFAULT_S3_PATH
"""
"""
Storage for uploaded media files.
The folder is defined in settings.DEFAULT_S3_PATH
"""

def __init__(self, *args, **kwargs):
kwargs['location'] = settings.DEFAULT_S3_PATH
Expand Down

0 comments on commit ee9dd42

Please sign in to comment.