1

私は機知に富んでいます。Django admin をセットアップしようとしていますが、苦労しています。私は Django book に従い、何度かチェックしましたが、無効な構文 (urls.py、23 行目) を取得しました。

from django.conf.urls.defaults import *
from mysite.views import hello, current_datetime, hours_ahead

# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
    (r'^hello/$', hello),
    (r'^time/$', current_datetime),
    (r'^time/plus/(\d{1,2})/$', hours_ahead),
    (r'^admin/', include(admin.site.urls), 
)

洞察をいただければ幸いです-ありがとう!

4

1 に答える 1

4

22 行目に閉じ括弧がありません:

(r'^admin/', include(admin.site.urls)), 

Python でa を取得したら、SyntaxErrorその前の行で括弧のバランスが取れていることを確認してください。

于 2012-11-26T12:46:25.897 に答える