mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-07-06 21:21:12 -07:00
minor style changes
This commit is contained in:
parent
296f52ed30
commit
eb01ae7ef8
1 changed files with 3 additions and 3 deletions
|
@ -559,7 +559,7 @@ def ripISO(item, newDir, bitbucket):
|
|||
concat = []
|
||||
m = 1
|
||||
while True:
|
||||
vtsName = 'VIDEO_TS%sVTS_%02d_%s.VOB' % (os.sep, n+1, str(m))
|
||||
vtsName = 'VIDEO_TS%sVTS_%02d_%d.VOB' % (os.sep, n+1, m)
|
||||
if vtsName in fileList:
|
||||
concat.append(vtsName)
|
||||
m += 1
|
||||
|
@ -584,9 +584,9 @@ def combineVTS(vtsPath):
|
|||
concat = ''
|
||||
m = 1
|
||||
while True:
|
||||
vtsName = 'VTS_%02d_%s.VOB' % (n+1, str(m))
|
||||
vtsName = 'VTS_%02d_%d.VOB' % (n+1, m)
|
||||
if os.path.isfile(os.path.join(vtsPath, vtsName)):
|
||||
concat = concat + '%s|' % (os.path.join(vtsPath, vtsName))
|
||||
concat = concat + os.path.join(vtsPath, vtsName) + '|'
|
||||
m += 1
|
||||
else:
|
||||
break
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue