subrepo: move import of xml.minidom.dom to its own line for check-code
authorAugie Fackler <raf@durin42.com>
Fri, 20 Sep 2013 10:15:37 -0400
changeset 19788 c26690fe5f08
parent 19787 87f07f70f227
child 19789 b054a241257d
subrepo: move import of xml.minidom.dom to its own line for check-code
mercurial/subrepo.py
--- a/mercurial/subrepo.py	Fri Sep 20 10:15:23 2013 -0400
+++ b/mercurial/subrepo.py	Fri Sep 20 10:15:37 2013 -0400
@@ -5,7 +5,8 @@
 # This software may be used and distributed according to the terms of the
 # GNU General Public License version 2 or any later version.
 
-import errno, os, re, xml.dom.minidom, shutil, posixpath, sys
+import errno, os, re, shutil, posixpath, sys
+import xml.dom.minidom
 import stat, subprocess, tarfile
 from i18n import _
 import config, scmutil, util, node, error, cmdutil, bookmarks, match as matchmod