Skip to content

Commit

Permalink
python
Browse files Browse the repository at this point in the history
  • Loading branch information
sfomel committed Nov 13, 2024
1 parent b1008a5 commit 6a914a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/python/m8r.py
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ def wantattr():
(Filter('attr'),attr,self)).read()
except:
raise RuntimeError('trouble running sfattr')
m = re.search('=\s*(\S+)',val)
m = re.search(r'=\s*(\S+)',val)
if m:
val = float(m.group(1))
else:
Expand Down

0 comments on commit 6a914a8

Please sign in to comment.