Changes to make it work with django 1.11 and python3
[sommitrealweird.git] / sommitrealweird / photo / views.py
index 8501a6fef06677a1f74242a031f1912622a20832..fea7dd3750785654e2728d88d2a15771d1dadf87 100644 (file)
@@ -1,6 +1,6 @@
 from django.views.generic import ListView, DetailView
 from django.http import Http404
-from models import Album, Photo
+from photo.models import Album, Photo
 
 class AlbumListView(ListView):
     model = Album