Skip to content

Commit 4a9ff34

Browse files
committed
Updating directory structure
1 parent 88dab34 commit 4a9ff34

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

src/__init__.py

Whitespace-only changes.
File renamed without changes.

transcode.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from datetime import datetime
55
import os
66
import 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()

0 commit comments

Comments
 (0)