dkm / python-vimeo

Python module for using Vimeo's API v2
http://www.kataplop.net/pub/projets/python
58 stars 10 forks source link

vimeo-uploadv2.py should use keyword arguments #11

Open joshcartme opened 11 years ago

joshcartme commented 11 years ago

The API calls after the actual uploading of a video in vimeo-uploadv2.py (such as vimeo_videos_setTitle) should use keyword arguments, otherwise the calls fail.

joshcartme commented 11 years ago

In case anyone else runs across this, an example of the correct call of setTitle (and other API methods afaik) would be:

client.vimeo_videos_setTitle(video_id=vid, title=title)