fix flake8

This commit is contained in:
Alan Rominger
2016-09-01 15:34:06 -04:00
committed by GitHub
parent ac2f0bdf57
commit 2fada7a6ad

View File

@@ -10,8 +10,6 @@ import traceback
# Centos-7 doesn't include the svg mime type
# /usr/lib64/python/mimetypes.py
import mimetypes
mimetypes.add_type("image/svg+xml", ".svg", True)
mimetypes.add_type("image/svg+xml", ".svgz", True)
# Django Split Settings
from split_settings.tools import optional, include
@@ -19,6 +17,9 @@ from split_settings.tools import optional, include
# Load default settings.
from defaults import * # NOQA
mimetypes.add_type("image/svg+xml", ".svg", True)
mimetypes.add_type("image/svg+xml", ".svgz", True)
MONGO_HOST = '127.0.0.1'
MONGO_PORT = 27017
MONGO_USERNAME = None