Browse code

Merge "worlddump: add empty newline after every command output"

Jenkins authored on 2016/02/14 23:42:51
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