From 31ffbd6115d69e3db113f76c13cf56ce1282d581 Mon Sep 17 00:00:00 2001 From: Jordan Atwood Date: Mon, 15 Jan 2024 19:53:22 -0800 Subject: [PATCH] Fix backslash munging in music transfer script --- src/.bin/music-transfer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/.bin/music-transfer.py b/src/.bin/music-transfer.py index 99150c3..bc33b22 100755 --- a/src/.bin/music-transfer.py +++ b/src/.bin/music-transfer.py @@ -30,7 +30,7 @@ KNOWN_EXTENSIONS: Set[str] = set([ # see: https://stackoverflow.com/a/35352640/540162 # getting filesystem type can be done like so: https://stackoverflow.com/a/25286268/540162 def munge_path(path: str) -> str: - return re.sub(r'[\:*?"|<>]+', '-', path.encode('unicode_escape').decode('utf-8')) + return re.sub(r'[\\:*?"|<>]+', '-', path.encode('unicode_escape').decode('utf-8')) def main(): if len(sys.argv) != 3: