update versions.cfg to use the current up-to-date packages

This commit is contained in:
Alexandre Flament 2015-05-02 15:45:17 +02:00
parent bbd83f5a51
commit 4689fe341c
40 changed files with 486 additions and 398 deletions

View file

@ -1,4 +1,4 @@
## Youtube (Videos)
# Youtube (Videos)
#
# @website https://www.youtube.com/
# @provide-api yes (http://gdata-samples-youtube-search-py.appspot.com/)
@ -47,7 +47,7 @@ def response(resp):
search_results = loads(resp.text)
# return empty array if there are no results
if not 'feed' in search_results:
if 'feed' not in search_results:
return []
feed = search_results['feed']