Skip to content

Commit 866473f

Browse files
committed
touched up windows mounts
1 parent ccc964d commit 866473f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fileformats/core/fs_mount_identifier.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def generate_mount_table(cls) -> ty.List[ty.Tuple[str, str]]:
8282
"""
8383
if platform.system() == "Windows":
8484
drive_names = [
85-
"%s:" % d for d in string.ascii_uppercase if os.path.exists("%s:" % d)
85+
c + ":" for c in string.ascii_uppercase if os.path.exists(c + ":")
8686
]
8787
drives = []
8888
for drive_name in drive_names:

0 commit comments

Comments
 (0)