diff options
Diffstat (limited to 'tests/sos_tests.py')
-rw-r--r-- | tests/sos_tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sos_tests.py b/tests/sos_tests.py index d15395f0..1fb31875 100644 --- a/tests/sos_tests.py +++ b/tests/sos_tests.py @@ -424,7 +424,7 @@ class BaseSoSReportTest(BaseSoSTest): override """ try: - return re.findall('/.*sosreport-.*tar.*\.gpg', self.cmd_output.stdout)[-1] + return re.findall(r'/.*sosreport-.*tar.*\.gpg', self.cmd_output.stdout)[-1] except: return None |