Merge branch 'master' into develop

This commit is contained in:
Garret Wassermann 2017-12-28 09:32:14 -05:00
commit 31b49ab2f6

View File

@ -22,7 +22,11 @@ def get_staff_user(username='helpdesk.staff', password='password'):
def reload_urlconf(urlconf=None):
from importlib import reload # python 3 needs this import.
from django.utils import six
if six.PY2:
from imp import reload
else:
from importlib import reload
if urlconf is None:
from django.conf import settings