# HG changeset patch # User Jeff Hammel # Date 1342560186 25200 # Node ID 3f7bc028d6eb10f6e67ea75da4a2364eeb65429b # Parent 905daa511aa4158ee3422cad2296ddb593438663 better diagnostics diff -r 905daa511aa4 -r 3f7bc028d6eb talosnames/api.py --- a/talosnames/api.py Tue Jul 17 14:17:41 2012 -0700 +++ b/talosnames/api.py Tue Jul 17 14:23:06 2012 -0700 @@ -120,7 +120,7 @@ outfile = tempfile.mktemp(suffix='.yml') command += ['-o', outfile] # add an output file command += ['-e', sys.executable] # add a pretend firefox so PerfConfigurator won't whine - print "\n%s" % command + print "\n%s" % subprocess.list2cmdline(command) call(['PerfConfigurator'] + command, stdout=subprocess.PIPE, cwd=talos_dir) assert os.path.exists(outfile) config = yaml.load(file(outfile))