Skip to content

Commit

Permalink
fix for 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabian-Robert Stöter committed Nov 10, 2018
1 parent 961880e commit bbf2957
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stempeg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def ffmpeg_version():
output.splitlines() if "ffmpeg version " in str(x)
][0]
hay = aac_codecs.decode('ascii')
match = re.findall('ffmpeg version (\d+\.)?(\d+\.)?(\*|\d+)', hay)
match = re.findall(r'ffmpeg version (\d+\.)?(\d+\.)?(\*|\d+)', hay)
if match:
return "".join(match[0])
else:
Expand Down

0 comments on commit bbf2957

Please sign in to comment.