Skip to content

Commit

Permalink
Restore settings
Browse files Browse the repository at this point in the history
  • Loading branch information
lincmba committed Jan 8, 2019
1 parent 6167a1b commit 3511f7b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion onadata/settings/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,23 @@
# imports this one.
# The local files should be used as the value for your DJANGO_SETTINGS_MODULE
# environment variable as needed.
import logging
import os
import socket
import subprocess # noqa, used by included files
import sys
from imp import reload

from celery.signals import after_setup_logger
from future.moves.urllib.parse import urljoin

from past.builtins import basestring

from django.core.exceptions import SuspiciousOperation
from django.utils.log import AdminEmailHandler

from celery.signals import after_setup_logger


# setting default encoding to utf-8
if sys.version[0] == '2':
reload(sys)
Expand Down

0 comments on commit 3511f7b

Please sign in to comment.