Skip to content

Commit

Permalink
add more escapes
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian-Robert Stöter committed Nov 10, 2018
1 parent bbf2957 commit b16cbc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stempeg/write.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def check_available_aac_encoders():
output.splitlines() if "AAC (Advanced Audio Coding)" in str(x)
][0]
hay = aac_codecs.decode('ascii')
match = re.findall('\(encoders: ([^\)]*) \)', hay)
match = re.findall(r'\(encoders: ([^\)]*) \)', hay)
if match:
return match[0].split(" ")
else:
Expand Down

0 comments on commit b16cbc1

Please sign in to comment.