changeset 5731:19691160d7f5

bisect: remove unused imports
author Matt Mackall <mpm@selenic.com>
date Thu, 27 Dec 2007 23:55:39 -0600
parents 1542c4ce729b
children 2060cad9fabd
files hgext/hbisect.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
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
@@ -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"""