Skip to content

Commit

Permalink
Minor bikeshedding about the utility module name.
Browse files Browse the repository at this point in the history
--HG--
rename : storages/util.py => storages/utils.py
  • Loading branch information
jezdez committed Feb 7, 2013
1 parent 00a252a commit 542d2bf
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion storages/backends/azure_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"Could not load Azure bindings. "
"See https://github.com/WindowsAzure/azure-sdk-for-python")

from storages.util import setting
from storages.utils import setting


def clean_name(name):
Expand Down
2 changes: 1 addition & 1 deletion storages/backends/gs.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from django.core.exceptions import ImproperlyConfigured

from storages.backends.s3boto import S3BotoStorage, S3BotoStorageFile
from storages.util import setting
from storages.utils import setting

try:
from boto.gs.connection import GSConnection, SubdomainCallingFormat
Expand Down
2 changes: 1 addition & 1 deletion storages/backends/s3boto.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
raise ImproperlyConfigured("Could not load Boto's S3 bindings.\n"
"See https://github.com/boto/boto")

from storages.util import setting
from storages.utils import setting

boto_version_info = tuple([int(i) for i in boto_version.split('.')])

Expand Down
File renamed without changes.

0 comments on commit 542d2bf

Please sign in to comment.