Changeset 1880

Show
Ignore:
Timestamp:
11/12/08 12:48:39 (8 weeks ago)
Author:
egj
Message:

fix syntax error in flickrapi call to fix bug where photo stories were undeletable

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • siteapp/trunk/opengeo/almanac/rest.py

    r1795 r1880  
    385385            from content import get_flickrapi_object 
    386386            flickr = get_flickrapi_object() 
    387             result = flickr.photos_delete(story.photoid) 
     387            result = flickr.photos_delete(photo_id=story.photoid) 
    388388            assert result.attrib['stat'] == u'ok', 'Unable to remove flickr photo. Received: %s' % result.xml 
    389389        return super(StoryAPP, self).DELETE()