fix get_email from gmail imap

This commit is contained in:
zodman
2017-09-27 12:40:47 -05:00
parent 540531c916
commit 03a57bdc5f
2 changed files with 8 additions and 2 deletions

View File

@@ -207,3 +207,8 @@ MEDIA_ROOT = os.path.join(BASE_DIR, 'media')
# - This is only necessary to make the demo project work, not needed for
# your own projects unless you make your own fixtures
FIXTURE_DIRS = [os.path.join(BASE_DIR, 'fixtures')]
try:
from .local_settings import *
except ImportError:
pass