diff mercurial/subrepo.py @ 19788:c26690fe5f08

subrepo: move import of xml.minidom.dom to its own line for check-code
author Augie Fackler <raf@durin42.com>
date Fri, 20 Sep 2013 10:15:37 -0400
parents cc338115d3b2
children 5e10d41e7b9c
line wrap: on
line diff
--- 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