Skip to content

Commit

Permalink
always use "-" as delimiter
Browse files Browse the repository at this point in the history
  • Loading branch information
lrlunin authored and mwouts committed Dec 16, 2024
1 parent 2b2d4c2 commit 1f5c68a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jupytext/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -1189,7 +1189,7 @@ def pipe_notebook(
command = shlex.split(command)
if "{}" in command:
if prefix is not None:
prefix = prefix + (" " if " " in prefix else "-")
prefix = prefix + "-"
tmp_file_args = dict(
mode="w+",
encoding="utf8",
Expand Down

0 comments on commit 1f5c68a

Please sign in to comment.