Fix Django 2.0 deprecation warnings

This commit is contained in:
AlanCoding
2019-04-12 14:45:44 -04:00
parent 864fef4f29
commit 8c2b3e9b84
15 changed files with 24 additions and 17 deletions

View File

@@ -4,4 +4,7 @@
from __future__ import absolute_import, unicode_literals
from .urls import urlpatterns
__all__ = ['urlpatterns']
__all__ = ['urlpatterns', 'app_name']
app_name = 'api'