Why is it in some urls.py
files you see url(..)
and in others you see (..)
.
For example
urlpatterns = patterns('',
url('hello','article.view.hello')
)
and in others i see :
urlpatterns = patterns('',
('article/', include('article.urls'))
)