hgext/record.py
changeset 18287 eeadc76a7575
parent 18266 09a2b6741695
child 18953 e4ae397595e8
equal deleted inserted replaced
18286:762f12b8ebae 18287:eeadc76a7575
     6 # GNU General Public License version 2 or any later version.
     6 # GNU General Public License version 2 or any later version.
     7 
     7 
     8 '''commands to interactively select changes for commit/qrefresh'''
     8 '''commands to interactively select changes for commit/qrefresh'''
     9 
     9 
    10 from mercurial.i18n import gettext, _
    10 from mercurial.i18n import gettext, _
    11 from mercurial import cmdutil, commands, extensions, hg, mdiff, patch
    11 from mercurial import cmdutil, commands, extensions, hg, patch
    12 from mercurial import util
    12 from mercurial import util
    13 import copy, cStringIO, errno, os, re, shutil, tempfile
    13 import copy, cStringIO, errno, os, re, shutil, tempfile
    14 
    14 
    15 cmdtable = {}
    15 cmdtable = {}
    16 command = cmdutil.command(cmdtable)
    16 command = cmdutil.command(cmdtable)