Mercurial > hg > mercurial-source
diff mercurial/repair.py @ 8312:b87a50b7125c
separate import lines from mercurial and general python modules
author | Simon Heimberg <simohe@besonet.ch> |
---|---|
date | Tue, 28 Apr 2009 17:40:46 +0200 |
parents | 46293a0c7e9f |
children | c8e81f557da7 |
line wrap: on
line diff
--- a/mercurial/repair.py +++ b/mercurial/repair.py @@ -6,9 +6,10 @@ # This software may be used and distributed according to the terms of the # GNU General Public License version 2, incorporated herein by reference. -import changegroup, os +import changegroup from node import nullrev, short from i18n import _ +import os def _bundle(repo, bases, heads, node, suffix, extranodes=None): """create a bundle with the specified revisions as a backup"""