Skip to content

Commit

Permalink
DVD support - Missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
ZeroQI committed Aug 30, 2015
1 parent 9891324 commit 1d57b16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Scanners/Series/Absolute Series Scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def add_episode_into_plex(mediaList, files, file, root, path, show, season=1, ep
else:
tv_show, tv_show.display_offset = Media.Episode(show, season, epn, title, year), (epn-ep)*100/(ep2-ep+1)
if os.path.basename(file).upper()=="VIDEO_TS.IFO":
for item in os.listdir(os.path.dirname(file))
for item in os.listdir(os.path.dirname(file)):
if item.upper()=="VTS_01_2.VOB": continue
if item.upper().startswith("VTS_01_"): tv_show.parts.append(os.path.join(os.path.dirname(file), item))
else: tv_show.parts.append(file)
Expand Down

0 comments on commit 1d57b16

Please sign in to comment.