Thx to mouton who solved this in irc chat, here u get this small fix.
Open ioMedia.itcl and search for ###; Get director lines.
Then replace this line:
if {[regexp {Directed by</b><br>\n <[^>]+[^<]+} $html name]} {
with this one:
if {[regexp {Directed by</b><br>\n[ ]?<[^>]+[^<]+} $html name]} {
|