bisect: remove unused imports
authorMatt Mackall <mpm@selenic.com>
Thu, 27 Dec 2007 23:55:39 -0600
changeset 5731 19691160d7f5
parent 5730 1542c4ce729b
child 5732 2060cad9fabd
bisect: remove unused imports
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
@@ -7,8 +7,8 @@
 # of the GNU General Public License, incorporated herein by reference.
 
 from mercurial.i18n import _
-from mercurial import hg, util, commands, cmdutil
-import os, sys, array
+from mercurial import hg, util, cmdutil
+import os, array
 
 class bisect(object):
     """dichotomic search in the DAG of changesets"""