<div>Hi:</div>
<div> </div>
<div>I&#39;m using the IMDB python scripts to batch populate my metadata, so I&#39;m running </div>
<div> </div>
<div>python find_meta.py -r /videos</div>
<div> </div>
<div>The metadata is found and loaded fine, the problem is at the end of the script I get the following exception:</div>
<div> </div>
<div>Traceback (most recent call last):<br>  File &quot;find_meta.py&quot;, line 1001, in &lt;module&gt;<br>    main()<br>  File &quot;find_meta.py&quot;, line 996, in main<br>    scan(path, options.imdb_id)<br>  File &quot;find_meta.py&quot;, line 885, in scan<br>
    scan_directory(root)<br>  File &quot;find_meta.py&quot;, line 846, in scan_directory<br>    scan_file(video)<br>  File &quot;find_meta.py&quot;, line 811, in scan_file<br>    save_metadata(pathName, metadata_target, metadata)<br>
  File &quot;find_meta.py&quot;, line 574, in save_metadata<br>    save_metadata_to_mythdb(videopath, metadata)<br>  File &quot;find_meta.py&quot;, line 311, in save_metadata_to_mythdb<br>    return save_video_metadata_to_mythdb(videopath, metadata)<br>
  File &quot;find_meta.py&quot;, line 369, in save_video_metadata_to_mythdb<br>    coverfile = find_poster_image(title, inetref)<br>  File &quot;find_meta.py&quot;, line 523, in find_poster_image<br>    title, count=1, accept_horizontal=True, imdb_id=imdb_id,retries=defaultretries)<br>
TypeError: find_best_posters() got an unexpected keyword argument &#39;retries&#39;</div>
<div> </div>
<div>I tried to troubleshoot the script with no luck (limited python knowledge).</div>
<div> </div>
<div>Please advice.<br></div>