##// END OF EJS Templates
revsetbenchmark: fix error raising...
Pierre-Yves David -
r21202:c04e5e93 stable
parent child Browse files
Show More
@@ -22,7 +22,7 b' def check_output(*args, **kwargs):'
22 proc = Popen(*args, **kwargs)
22 proc = Popen(*args, **kwargs)
23 output, error = proc.communicate()
23 output, error = proc.communicate()
24 if proc.returncode != 0:
24 if proc.returncode != 0:
25 raise CalledProcessError(proc.returncode, ' '.join(args))
25 raise CalledProcessError(proc.returncode, ' '.join(args[0]))
26 return output
26 return output
27
27
28 def update(rev):
28 def update(rev):
General Comments 0
You need to be logged in to leave comments. Login now