summaryrefslogtreecommitdiffstats
path: root/utils/uf2conv.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/uf2conv.py')
-rw-r--r--utils/uf2conv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/uf2conv.py b/utils/uf2conv.py
index 849e6499..7263cba9 100644
--- a/utils/uf2conv.py
+++ b/utils/uf2conv.py
@@ -180,7 +180,7 @@ def get_drives():
"get", "DeviceID,", "VolumeName,",
"FileSystem,", "DriveType"])
for line in to_str(r).split('\n'):
- words = re.split('\s+', line)
+ words = re.split(r'\s+', line)
if len(words) >= 3 and words[1] == "2" and words[2] == "FAT":
drives.append(words[0])
else: