mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-16 02:02:53 -07:00
use extend, not append. fixes #206
This commit is contained in:
parent
c70afb52d1
commit
864a5a79be
1 changed files with 2 additions and 2 deletions
|
@ -73,8 +73,8 @@ def get_movie_info(baseURL, imdbid, download_id):
|
|||
Logger.exception("Unable to parse json data for movies")
|
||||
break
|
||||
|
||||
movieid.append(movieid2)
|
||||
library.append(library2)
|
||||
movieid.extend(movieid2)
|
||||
library.extend(library2)
|
||||
if len(movieid2) < int(50): # finished parsing list of movies. Time to break.
|
||||
break
|
||||
offset = offset + 50
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue