hovel / imagestore

Django gallery solution.
BSD 3-Clause "New" or "Revised" License
164 stars 72 forks source link

Django 1.6 Issue in urls.py #26

Closed sthzg closed 10 years ago

sthzg commented 10 years ago

The following import in urls.py does not work in Django 1.6

from django.conf.urls.defaults import *
ImportError: No module named defaults

Can be solved with directly importing, like

from django.conf.urls import patterns, url
GeyseR commented 10 years ago

it was solved in https://github.com/hovel/imagestore/commit/1daf0bdf45fda6c610f0628e8f274f33ca744003#diff-9

sthzg commented 10 years ago

Thanks for the info. I did only check it in the package that came when I installed the package with pip.