From patchwork Fri Sep 20 14:23:41 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [03, of, 13, V2, py3, support] subrepo: move import of xml.minidom.dom to its own line for check-code From: Augie Fackler X-Patchwork-Id: 2549 Message-Id: <7b7fcecd91f45e3c5234.1379687021@arthedain.pit.corp.google.com> To: mercurial-devel@selenic.com Date: Fri, 20 Sep 2013 10:23:41 -0400 # HG changeset patch # User Augie Fackler # Date 1379686537 14400 # Fri Sep 20 10:15:37 2013 -0400 # Node ID 7b7fcecd91f45e3c5234fa087ecdc892115ea0fc # Parent edf0064f32a6e4b22630afb605e0bba72fdc5f65 subrepo: move import of xml.minidom.dom to its own line for check-code diff --git a/mercurial/subrepo.py b/mercurial/subrepo.py --- a/mercurial/subrepo.py +++ b/mercurial/subrepo.py @@ -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