Skip to content

Commit

Permalink
fix import order
Browse files Browse the repository at this point in the history
  • Loading branch information
Spycho committed Apr 26, 2017
1 parent 9e0e9d1 commit f1a88e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions example_project/example_project/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@
# program; modified versions of the program must be marked as such and not
# identified as the original program.
"""Django settings for example_project project."""
import os
import subprocess

import os

DEBUG = True

DATABASES = {
Expand Down Expand Up @@ -91,7 +92,6 @@
}

LOGIN_URL = '/players/accounts/login/'

MIDDLEWARE_CLASSES = [
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.locale.LocaleMiddleware',
Expand Down
2 changes: 1 addition & 1 deletion players/urls.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from django.conf.urls import url
from django.views.generic import TemplateView
from django.contrib.auth import views as auth_views
from django.contrib.auth.decorators import login_required
from django.views.generic import TemplateView

from players import views

Expand Down

0 comments on commit f1a88e5

Please sign in to comment.