Skip to content

Commit f1478cc

Browse files
committed
Add '-' to label prefix
1 parent 615059e commit f1478cc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

BlocksScreen/devices/storage/udisks2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ def add_symlink(
482482
"""
483483
if not _validated and label:
484484
label = validate_label(label, strict=True)
485-
label = "USB " + label
485+
label = "USB-" + label
486486
fallback: str = "USB DRIVE" if _index == 0 else str(f"USB DRIVE {_index}")
487487
dstb = pathlib.Path(dst_path).joinpath(label if label else fallback)
488488
try:

0 commit comments

Comments
 (0)