File tree Expand file tree Collapse file tree 4 files changed +3
-3
lines changed
Expand file tree Collapse file tree 4 files changed +3
-3
lines changed File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 44from datetime import datetime
55import os
66import sys
7- from TranscodeSession import Session
7+ from src import TranscodeSession
88
99"""
1010
@@ -61,7 +61,7 @@ def main():
6161 else :
6262 source_files = [args .file ]
6363 for source_file in source_files :
64- session = Session (source_file , args )
64+ session = TranscodeSession . Session (source_file , args )
6565 if os .path .exists (session .path ["output" ]):
6666 print (" Skipping" , source_file )
6767 source_files = [file for file in source_files if file is not source_file ]
@@ -77,7 +77,7 @@ def main():
7777 # Do the thing
7878 task_start_time = datetime .now ()
7979 for file in source_files :
80- session = Session (file , args )
80+ session = TranscodeSession . Session (file , args )
8181 session .summarize ()
8282 print (session .command + "\n " )
8383 job_start_time = datetime .now ()
You can’t perform that action at this time.
0 commit comments