Skip to content

Commit cacb5f6

Browse files
committed
fixed a bug
1 parent 2ae9086 commit cacb5f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/convert.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ def get_output(process,error_handler=None):
271271
if preferred_choices.get(key)==None:
272272
convert_vid=input(f"current video codec is {codecs['Video']}, convert it to h264?(y/N)(default=N)")
273273
# defaults to N so only checking if Y entered
274-
if(convert_vid.capitalize=='Y'):
274+
if(convert_vid.capitalize()=='Y'):
275275
codecs[key]='h264'
276276
else:
277277
codecs[key]='copy'

0 commit comments

Comments
 (0)