From 190b29d45e15fd7a0fddb89dbb304fb35554814e Mon Sep 17 00:00:00 2001 From: Ihar Hrachyshka Date: Thu, 11 Feb 2016 13:42:21 +0100 Subject: [PATCH] worlddump: add empty newline after every command output It makes it a bit easier to read the output since each new command is now visually separated from the output of the previous one. Change-Id: If441c61bb6f13f85f771dd31609b10d3dd1ee93c --- tools/worlddump.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/worlddump.py b/tools/worlddump.py index 9d2b082f18..d67f226464 100755 --- a/tools/worlddump.py +++ b/tools/worlddump.py @@ -56,6 +56,7 @@ def _dump_cmd(cmd): print try: subprocess.check_call(cmd, shell=True) + print except subprocess.CalledProcessError: print "*** Failed to run: %s" % cmd