bisect: remove versionstr
authorMatt Mackall <mpm@selenic.com>
Thu, 27 Dec 2007 23:55:39 -0600
changeset 5715 d280774a7498
parent 5714 9d50b2450ac3
child 5716 be367cbafe70
bisect: remove versionstr
hgext/hbisect.py
--- a/hgext/hbisect.py	Thu Dec 27 23:55:39 2007 -0600
+++ b/hgext/hbisect.py	Thu Dec 27 23:55:39 2007 -0600
@@ -10,8 +10,6 @@
 from mercurial import hg, util, commands, cmdutil
 import os, sys, sets
 
-versionstr = "0.0.3"
-
 def check_clean(ui, repo):
     merged = (nullid in repo.dirstate.parents())
     modified, added, removed, deleted, unknown = repo.status()[:5]