Skip to content

Commit b821bfe

Browse files
committed
Add the slash into the path
1 parent 2c9b9bd commit b821bfe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/murfey/client/tui/screens.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def determine_default_destination(
9292
elif machine_data.get("data_directories"):
9393
for data_dir in machine_data["data_directories"]:
9494
if source.resolve() == Path(data_dir):
95-
_default = destination + str(visit)
95+
_default = f"{destination}/{visit}"
9696
break
9797
else:
9898
try:
@@ -129,7 +129,7 @@ def determine_default_destination(
129129
else:
130130
_default = ""
131131
else:
132-
_default = destination + f"/{visit}"
132+
_default = f"{destination}/{visit}"
133133
return (
134134
_default + f"/{extra_directory}"
135135
if not _default.endswith("/")

0 commit comments

Comments
 (0)