2
0
mirror of https://gitlab.com/apparmor/apparmor synced 2025-08-31 22:35:35 +00:00

Avoid escaping quotation marks where possible.

This commit is contained in:
Mark Grassi
2022-08-07 20:41:27 -04:00
parent c57138f255
commit 68e3f12c2c
4 changed files with 8 additions and 8 deletions

View File

@@ -81,7 +81,7 @@ class AATestTemplate(unittest.TestCase, metaclass=AANoCleanupMetaClass):
return a textual error if it failed."""
if self.debug:
print('\n===> Running command: \'%s\'' % (' '.join(command)))
print("\n===> Running command: '%s'" % (' '.join(command)))
(rc, out, outerr) = self._run_cmd(command, input, stderr, stdout, stdin, timeout)
report = out + outerr