From bbf295786347bb7ccfe763e914ca23ed51ac99b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian-Robert=20St=C3=B6ter?= Date: Sat, 10 Nov 2018 12:52:18 +0100 Subject: [PATCH] fix for 3.6 --- stempeg/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stempeg/__init__.py b/stempeg/__init__.py index e9dac20..9ab2889 100644 --- a/stempeg/__init__.py +++ b/stempeg/__init__.py @@ -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: