diff hgext/hbisect.py @ 5715:d280774a7498

bisect: remove versionstr
author Matt Mackall <mpm@selenic.com>
date Thu, 27 Dec 2007 23:55:39 -0600
parents 9d50b2450ac3
children 18fdfafdb3e9
line wrap: on
line diff
--- 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]