Skip to content

Commit 5735769

Browse files
committed
Latest method names from common.py
1 parent 5bbb5e5 commit 5735769

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

transcode.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
sys.path.append(os.path.join(sys.path[0], "lib"))
1212
try:
1313
from TranscodeSession import Session
14-
from common import get_user_response
14+
from common import get_yn_answer
1515
except ImportError:
1616
sys.exit("FATAL: failed to import dependencies from ./lib/\n")
1717

@@ -50,7 +50,7 @@ def evaluate_args():
5050
sys.exit("Invalid command-line arguments.\n")
5151
elif args.all and args.quality:
5252
print("\nWarning! Combining --all and --quality options is not recommended and may not produce optimal HEVC transcodes.")
53-
proceed = get_user_response()
53+
proceed = get_yn_answer()
5454
if not proceed:
5555
sys.exit("Aborting invocation with --all and --quality options.\n")
5656

0 commit comments

Comments
 (0)