hgext/transplant.py
changeset 7629 97253bcb44a8
parent 7415 6163ef936a00
child 7633 08cabecfa8a8
--- a/hgext/transplant.py	Tue Jan 13 10:44:16 2009 +0100
+++ b/hgext/transplant.py	Tue Jan 13 13:43:42 2009 +0100
@@ -5,11 +5,6 @@
 # This software may be used and distributed according to the terms
 # of the GNU General Public License, incorporated herein by reference.
 
-from mercurial.i18n import _
-import os, tempfile
-from mercurial import bundlerepo, changegroup, cmdutil, hg, merge
-from mercurial import patch, revlog, util
-
 '''patch transplanting tool
 
 This extension allows you to transplant patches from another branch.
@@ -18,6 +13,11 @@
 from a changeset hash to its hash in the source repository.
 '''
 
+from mercurial.i18n import _
+import os, tempfile
+from mercurial import bundlerepo, changegroup, cmdutil, hg, merge
+from mercurial import patch, revlog, util
+
 class transplantentry:
     def __init__(self, lnode, rnode):
         self.lnode = lnode