studionow / pybrightcove

Python Implementation of the Brightcove Backend Integration API
http://help.brightcove.com/developer/docs/mediaapi/media-API.cfm
MIT License
29 stars 28 forks source link

end_date does not update the ending date on a video #31

Open mrfunyon opened 14 years ago

mrfunyon commented 14 years ago

when the end_date is set and the video is saved the end_date is not saved. Example from pybrightcove import Video import datetime vid = Video.get_by_ids(ids=[123456,]) # returns <pybrightcove.video.Video object at 0x789350> vid.end_date = datetime.datetime.now() + datetime.timedelta(days=14) vid.save()

The end_date will remain empty and not get saved.