Browse code

Fix NameError in worlddump.py

Change-Id: Ie87e5b5ead777c0153ed7fa5d1db5cc1ae444261

Amey Bhide authored on 2015/07/01 03:39:05
Showing 1 changed files
... ...
@@ -47,7 +47,7 @@ def _dump_cmd(cmd):
47 47
     print cmd
48 48
     print "-" * len(cmd)
49 49
     print
50
-    subprocess.Popen(cmd, shell=True)
50
+    Popen(cmd, shell=True)
51 51
 
52 52
 
53 53
 def _header(name):