Browse code

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

Ihar Hrachyshka authored on 2016/02/11 21:42:21
Showing 1 changed files
... ...
@@ -56,6 +56,7 @@ def _dump_cmd(cmd):
56 56
     print
57 57
     try:
58 58
         subprocess.check_call(cmd, shell=True)
59
+        print
59 60
     except subprocess.CalledProcessError:
60 61
         print "*** Failed to run: %s" % cmd
61 62