forked from ansible/awx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix up flake8 runtime configuration, do a bit of flake8 work as it
relates to pyflakes)
- Loading branch information
Showing
7 changed files
with
39 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,17 @@ | ||
# Copyright (c) 2014 AnsibleWorks, Inc. | ||
# All Rights Reserved. | ||
|
||
from django.conf import settings | ||
from django.conf.urls import * | ||
from django.conf.urls import url, patterns, include | ||
|
||
handler403 = 'awx.main.views.handle_403' | ||
handler404 = 'awx.main.views.handle_404' | ||
handler500 = 'awx.main.views.handle_500' | ||
|
||
urlpatterns = patterns('', | ||
url(r'', include('awx.ui.urls', namespace='ui', app_name='ui')), | ||
url(r'^api/', include('awx.api.urls', namespace='api', app_name='api')), | ||
) | ||
url(r'', include('awx.ui.urls', namespace='ui', app_name='ui')), | ||
url(r'^api/', include('awx.api.urls', namespace='api', app_name='api'))) | ||
|
||
urlpatterns += patterns('awx.main.views', | ||
url(r'^403.html$', 'handle_403'), | ||
url(r'^404.html$', 'handle_404'), | ||
url(r'^500.html$', 'handle_500'), | ||
) | ||
url(r'^403.html$', 'handle_403'), | ||
url(r'^404.html$', 'handle_404'), | ||
url(r'^500.html$', 'handle_500')) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters