Change Humbug => Zulip in name of finder module.

(imported from commit 2f5391da2c3ce667531a3c6155c759309b9249f5)
This commit is contained in:
Tim Abbott 2013-08-06 15:37:02 -04:00
parent 034c96ef77
commit 6083ad7244
2 changed files with 2 additions and 2 deletions

View File

@ -238,7 +238,7 @@ if DEBUG:
else:
STATICFILES_STORAGE = 'zerver.storage.ZulipStorage'
STATICFILES_FINDERS = (
'zerver.finders.HumbugFinder',
'zerver.finders.ZulipFinder',
)
if DEPLOYED:
STATIC_ROOT = '/home/humbug/prod-static'

View File

@ -20,5 +20,5 @@ class ExcludeUnminifiedMixin(object):
if not re.search(excluded, path):
yield path, storage
class HumbugFinder(ExcludeUnminifiedMixin, FileSystemFinder):
class ZulipFinder(ExcludeUnminifiedMixin, FileSystemFinder):
pass