divides "import" statement in a url.py

url.py is used as template file,when "run_test.sh -m startpanel" is executed.

It is desirable to divide an "import" statement in a url.py beforehand.

Change-Id: Ibc50e3efbae0d2696d796516a1387633e06cc060
Closes-Bug: #1226427
This commit is contained in:
Noboru Arai 2013-09-17 15:50:04 +09:00
parent 528bb1a6ec
commit bfa506e7eb
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,5 @@
from django.conf.urls.defaults import patterns, url
from django.conf.urls.defaults import patterns # noqa
from django.conf.urls.defaults import url # noqa
from .views import IndexView