mirror of https://github.com/zulip/zulip.git
Make zproject/urls.py pass mypy check.
This commit is contained in:
parent
1c04560def
commit
ea52fc05ed
|
@ -18,7 +18,6 @@ docs/conf.py
|
|||
tools/deprecated/
|
||||
zproject/settings.py
|
||||
zproject/test_settings.py
|
||||
zproject/urls.py
|
||||
zerver/management/commands/makemessages.py
|
||||
zerver/migrations/
|
||||
zerver/tests/
|
||||
|
|
|
@ -90,8 +90,7 @@ i18n_urls = [
|
|||
url(r'^features/$', TemplateView.as_view(template_name='zerver/features.html')),
|
||||
]
|
||||
|
||||
urlpatterns = []
|
||||
urlpatterns += patterns('', *i18n_urls)
|
||||
urlpatterns = patterns('', *i18n_urls)
|
||||
|
||||
# These are used for voyager development. On a real voyager instance,
|
||||
# these files would be served by nginx.
|
||||
|
|
Loading…
Reference in New Issue