# HG changeset patch # User Augie Fackler # Date 1379686537 14400 # Node ID c26690fe5f0857e360d3f6383576abeaebbf0d5e # Parent 87f07f70f227e0bb958609dcfc2fd29828b34a99 subrepo: move import of xml.minidom.dom to its own line for check-code diff -r 87f07f70f227 -r c26690fe5f08 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