thegooglecodearchive / django-filebrowser

Automatically exported from code.google.com/p/django-filebrowser
Other
0 stars 0 forks source link

ImportError: Can't find module "filebrowser.urls" #321

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Install filebrowser
2. Follow the quick start guide to configure

I suspect there are just some quotes missing from the documentation?

urlpatterns = patterns('',
    (r'^admin/filebrowser/', include(filebrowser.urls)),
)

Should read:

urlpatterns = patterns('',
    (r'^admin/filebrowser/', include('filebrowser.urls')),
)

Original issue reported on code.google.com by john...@gmail.com on 7 Mar 2011 at 11:27

GoogleCodeExporter commented 9 years ago

Original comment by sehmaschine on 8 Mar 2011 at 9:13

GoogleCodeExporter commented 9 years ago

Original comment by sehmaschine on 8 Mar 2011 at 7:34