hgext/hbisect.py
changeset 3893 6b4127c7d52a
parent 3886 abaee83ce0a6
child 4390 052062b98f26
equal deleted inserted replaced
3892:2eec996f2fb9 3893:6b4127c7d52a
     4 # Inspired by git bisect, extension skeleton taken from mq.py.
     4 # Inspired by git bisect, extension skeleton taken from mq.py.
     5 #
     5 #
     6 # This software may be used and distributed according to the terms
     6 # This software may be used and distributed according to the terms
     7 # of the GNU General Public License, incorporated herein by reference.
     7 # of the GNU General Public License, incorporated herein by reference.
     8 
     8 
     9 from mercurial.i18n import gettext as _
     9 from mercurial.i18n import _
    10 from mercurial import hg, util, commands, cmdutil
    10 from mercurial import hg, util, commands, cmdutil
    11 import os, sys, sets
    11 import os, sys, sets
    12 
    12 
    13 versionstr = "0.0.3"
    13 versionstr = "0.0.3"
    14 
    14