mirror of https://github.com/zulip/zulip.git
Change Humbug => Zulip in name of finder module.
(imported from commit 2f5391da2c3ce667531a3c6155c759309b9249f5)
This commit is contained in:
parent
034c96ef77
commit
6083ad7244
|
@ -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'
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue