Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/test/pacman/tap.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/pacman/tap.py')
-rw-r--r--test/pacman/tap.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/pacman/tap.py b/test/pacman/tap.py
index eb0747be..8a32b3ac 100644
--- a/test/pacman/tap.py
+++ b/test/pacman/tap.py
@@ -19,7 +19,8 @@ level = 0
failed = 0
def _output(msg):
- print("%s%s" % (" "*level, str(msg).replace("\n", "\\n")))
+ leader = "#" if level > 0 else ""
+ print("%s%s%s" % (leader, " "*level, str(msg).replace("\n", "\\n")))
def skip_all(description=""):
if description: