Skip to content

Commit 77ce727

Browse files
committed
update(cli): Remove hardcoded dash from output_suffix #172
1 parent 0c61ed8 commit 77ce727

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/subsai/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def run(media_file_arg: List[str],
9494
else:
9595
folder = file.parent
9696
if output_suffix is not None:
97-
file_name = folder / (file.stem + '-' + output_suffix + '.' + subs_format)
97+
file_name = folder / (file.stem + output_suffix + '.' + subs_format)
9898
else:
9999
file_name = folder / (file.stem + '.' + subs_format)
100100

0 commit comments

Comments
 (0)