We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3325bc commit afb00d0Copy full SHA for afb00d0
BlocksScreen/devices/storage/udisks2.py
@@ -2,6 +2,7 @@
2
import logging
3
import os
4
import pathlib
5
+from tkinter import Label
6
import typing
7
from collections.abc import Coroutine
8
import unicodedata
@@ -482,6 +483,7 @@ def add_symlink(
482
483
"""
484
if not _validated and label:
485
label = validate_label(label, strict=True)
486
+ label = "USB " + label
487
fallback: str = "USB DRIVE" if _index == 0 else str(f"USB DRIVE {_index}")
488
dstb = pathlib.Path(dst_path).joinpath(label if label else fallback)
489
try:
0 commit comments