fixed some errors getting encoding files
This commit is contained in:
@@ -21,8 +21,10 @@ def ShowHelp():
|
||||
print 'TVEncoder.py -e - encode the files that have been processed'
|
||||
print 'TVEncoder.py -e -l - list the files that would be encoded'
|
||||
|
||||
def PrintShowsToEncode(showData):
|
||||
print "/n".join(showData)
|
||||
def PrintShowsToEncode(showsData):
|
||||
# print "/n".join(showData)
|
||||
for showData in showsData:
|
||||
print showData.ToString()
|
||||
|
||||
def PrintShowsToPrepare(showsData):
|
||||
for showData in showsData:
|
||||
@@ -95,4 +97,4 @@ def main(argv):
|
||||
tvData.PrepareEpisodes(shows)
|
||||
|
||||
if __name__ == "__main__":
|
||||
main(sys.argv[1:])
|
||||
main(sys.argv[1:])
|
||||
|
||||
Reference in New Issue
Block a user