Modified:
/trunk/flickr.py
=======================================
--- /trunk/flickr.py Thu Feb 3 11:14:29 2011
+++ /trunk/flickr.py Thu Feb 3 12:22:29 2011
@@ -1088,8 +1088,8 @@
#print "***** do post %s" % method
params = _prepare_params(params)
- url = '%s%s/?api_key=%s&method=%s&%s'% \
- (HOST, API, API_KEY, method, _get_auth_url_suffix(method, auth,
params))
+ url = '%s%s/?api_key=%s%s'% \
+ (HOST, API, API_KEY, _get_auth_url_suffix(method, auth, params))
# There's no reason this can't be str(urlencode(params)). I just
wanted to
# have it the same as the rest.