Mercurial > public > mercurial-scm > hg-stable
comparison 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 |
comparison
equal
deleted
inserted
replaced
19787:87f07f70f227 | 19788:c26690fe5f08 |
---|---|
3 # Copyright 2009-2010 Matt Mackall <mpm@selenic.com> | 3 # Copyright 2009-2010 Matt Mackall <mpm@selenic.com> |
4 # | 4 # |
5 # This software may be used and distributed according to the terms of the | 5 # This software may be used and distributed according to the terms of the |
6 # GNU General Public License version 2 or any later version. | 6 # GNU General Public License version 2 or any later version. |
7 | 7 |
8 import errno, os, re, xml.dom.minidom, shutil, posixpath, sys | 8 import errno, os, re, shutil, posixpath, sys |
9 import xml.dom.minidom | |
9 import stat, subprocess, tarfile | 10 import stat, subprocess, tarfile |
10 from i18n import _ | 11 from i18n import _ |
11 import config, scmutil, util, node, error, cmdutil, bookmarks, match as matchmod | 12 import config, scmutil, util, node, error, cmdutil, bookmarks, match as matchmod |
12 hg = None | 13 hg = None |
13 propertycache = util.propertycache | 14 propertycache = util.propertycache |