Fixed F403
This commit is contained in:
parent
eeba502fe8
commit
31ca1960c0
@ -13,7 +13,7 @@
|
||||
# License for the specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
from django.conf.urls.defaults import *
|
||||
from django.conf.urls.defaults import patterns
|
||||
|
||||
|
||||
urlpatterns = patterns('storyboard.about.views',
|
||||
|
@ -13,7 +13,7 @@
|
||||
# License for the specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
from django.conf.urls.defaults import *
|
||||
from django.conf.urls.defaults import patterns
|
||||
|
||||
|
||||
urlpatterns = patterns('storyboard.projects.views',
|
||||
|
@ -194,6 +194,6 @@ LOGGING = {
|
||||
|
||||
# Override settings with local ones.
|
||||
try:
|
||||
from storyboard.local_settings import *
|
||||
from storyboard.local_settings import * # noqa
|
||||
except ImportError:
|
||||
pass
|
||||
|
@ -13,7 +13,7 @@
|
||||
# License for the specific language governing permissions and limitations
|
||||
# under the License.
|
||||
|
||||
from django.conf.urls.defaults import *
|
||||
from django.conf.urls.defaults import patterns
|
||||
|
||||
|
||||
urlpatterns = patterns('storyboard.stories.views',
|
||||
|
@ -13,7 +13,9 @@
|
||||
# License for the specific language governing permissions and limitations
|
||||
# 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
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user