mercurial/hg.py
changeset 14064 e4bfb9c337f3
parent 14004 97ed99d1f419
child 14073 72c84f24b420
equal deleted inserted replaced
14063:87ebf72878ed 14064:e4bfb9c337f3
     6 # This software may be used and distributed according to the terms of the
     6 # This software may be used and distributed according to the terms of the
     7 # GNU General Public License version 2 or any later version.
     7 # GNU General Public License version 2 or any later version.
     8 
     8 
     9 from i18n import _
     9 from i18n import _
    10 from lock import release
    10 from lock import release
    11 from node import hex, nullid, nullrev, short
    11 from node import hex, nullid
    12 import localrepo, bundlerepo, httprepo, sshrepo, statichttprepo, bookmarks
    12 import localrepo, bundlerepo, httprepo, sshrepo, statichttprepo, bookmarks
    13 import lock, util, extensions, error, encoding, node
    13 import lock, util, extensions, error, node
    14 import cmdutil, discovery, url
    14 import cmdutil, discovery, url
    15 import merge as mergemod
    15 import merge as mergemod
    16 import verify as verifymod
    16 import verify as verifymod
    17 import errno, os, shutil
    17 import errno, os, shutil
    18 
    18