changeset 20849:5abc2562106a

revsetbenchmark: fix semicolon
author Matt Mackall <mpm@selenic.com>
date Thu, 27 Mar 2014 16:52:24 -0500
parents 11a9393609c8
children d0c2535c7aba
files contrib/revsetbenchmarks.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/contrib/revsetbenchmarks.py	Wed Mar 26 18:03:30 2014 -0700
+++ b/contrib/revsetbenchmarks.py	Thu Mar 27 16:52:24 2014 -0500
@@ -37,7 +37,7 @@
 print
 
 revs = check_output("hg log --template='{rev}\n' --rev " + target_rev,
-                    shell=True);
+                    shell=True)
 
 revs = [r for r in revs.split() if r]