diff options
Diffstat (limited to 'apps/photos/utils.py')
-rw-r--r-- | apps/photos/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/photos/utils.py b/apps/photos/utils.py index 24991b2..137fe9f 100644 --- a/apps/photos/utils.py +++ b/apps/photos/utils.py @@ -28,13 +28,13 @@ except ImportError: raise ImportError("Could not import the Python Imaging Library.") -from strutils import safestr +from utils.strutils import safestr from photos.models import Photo,PhotoGallery # Flickr Sync stuffs API_KEY = settings.FLICKR_API_KEY -from APIClients import FlickrClient +from utils.APIClients import FlickrClient EXIF_PARAMS = {"Aperture":'f/2.8',"Make":'Apple',"Model":'iPhone',"Exposure":'',"ISO Speed":'',"Focal Length":'',"Shutter Speed":'',"Lens":'','Date and Time (Original)':'2008:07:03 22:44:25'} |