Fix multiple imports on one line

This commit is contained in:
Daniel Roy Greenfeld 2017-04-13 11:30:57 -07:00
parent 8673505683
commit ba2301fc3c
2 changed files with 9 additions and 8 deletions

View File

@ -84,7 +84,7 @@ Constraints
* Only maintained 3rd party libraries are used. * Only maintained 3rd party libraries are used.
* Uses PostgreSQL everywhere (9.2+) * Uses PostgreSQL everywhere (9.2+)
* Environment variables for configuration (This won't work with Apache/mod_wsgi). * Environment variables for configuration (This won't work with Apache/mod_wsgi except on AWS ELB).
Usage Usage
@ -273,18 +273,18 @@ Two Scoops Press
:align: center :align: center
:alt: Two Scoops Press :alt: Two Scoops Press
:target: https://twoscoopspress.com :target: https://twoscoopspress.com
Two Scoops Press brings you the best dairy-themed Django references in the universe Two Scoops Press brings you the best dairy-themed Django references in the universe
pyup pyup
~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~
.. image:: https://pyup.io/static/images/logo.png .. image:: https://pyup.io/static/images/logo.png
:name: pyup :name: pyup
:align: center :align: center
:alt: pyup :alt: pyup
:target: https://pyup.io/ :target: https://pyup.io/
Pyup brings you automated security and dependency updates used by Google and other organizations. Free for open source projects! Pyup brings you automated security and dependency updates used by Google and other organizations. Free for open source projects!
.. _`PyPA Code of Conduct`: https://www.pypa.io/en/latest/code-of-conduct/ .. _`PyPA Code of Conduct`: https://www.pypa.io/en/latest/code-of-conduct/

View File

@ -13,7 +13,8 @@ middleware here, or combine a Django application with an application of another
framework. framework.
""" """
import os, sys import os
import sys
from django.core.wsgi import get_wsgi_application from django.core.wsgi import get_wsgi_application