Fixed F403
This commit is contained in:
parent
eeba502fe8
commit
31ca1960c0
@ -13,7 +13,7 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
from django.conf.urls.defaults import *
|
from django.conf.urls.defaults import patterns
|
||||||
|
|
||||||
|
|
||||||
urlpatterns = patterns('storyboard.about.views',
|
urlpatterns = patterns('storyboard.about.views',
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
from django.conf.urls.defaults import *
|
from django.conf.urls.defaults import patterns
|
||||||
|
|
||||||
|
|
||||||
urlpatterns = patterns('storyboard.projects.views',
|
urlpatterns = patterns('storyboard.projects.views',
|
||||||
|
@ -194,6 +194,6 @@ LOGGING = {
|
|||||||
|
|
||||||
# Override settings with local ones.
|
# Override settings with local ones.
|
||||||
try:
|
try:
|
||||||
from storyboard.local_settings import *
|
from storyboard.local_settings import * # noqa
|
||||||
except ImportError:
|
except ImportError:
|
||||||
pass
|
pass
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
from django.conf.urls.defaults import *
|
from django.conf.urls.defaults import patterns
|
||||||
|
|
||||||
|
|
||||||
urlpatterns = patterns('storyboard.stories.views',
|
urlpatterns = patterns('storyboard.stories.views',
|
||||||
|
@ -13,7 +13,9 @@
|
|||||||
# License for the specific language governing permissions and limitations
|
# License for the specific language governing permissions and limitations
|
||||||
# under the License.
|
# under the License.
|
||||||
|
|
||||||
from django.conf.urls.defaults import *
|
from django.conf.urls.defaults import include
|
||||||
|
from django.conf.urls.defaults import patterns
|
||||||
|
from django.conf.urls.defaults import url
|
||||||
from django.contrib import admin
|
from django.contrib import admin
|
||||||
|
|
||||||
|
|
||||||
|
2
tox.ini
2
tox.ini
@ -24,6 +24,6 @@ commands = python setup.py testr --coverage --testr-args='{posargs}'
|
|||||||
downloadcache = ~/cache/pip
|
downloadcache = ~/cache/pip
|
||||||
|
|
||||||
[flake8]
|
[flake8]
|
||||||
ignore = E125,E128,H,F403
|
ignore = E125,E128,H
|
||||||
show-source = True
|
show-source = True
|
||||||
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build
|
exclude=.venv,.git,.tox,dist,doc,*openstack/common*,*lib/python*,*egg,build
|
||||||
|
Loading…
x
Reference in New Issue
Block a user