Mercurial > public > mercurial-scm > hg
diff hgext/zeroconf/__init__.py @ 7238:b1a9ad7b464e
zeroconf: don't break on hg showconfig
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Fri, 24 Oct 2008 11:35:47 -0500 |
parents | 292fb2ad2846 |
children | 810ca383da9c |
line wrap: on
line diff
--- a/hgext/zeroconf/__init__.py Fri Oct 24 16:20:53 2008 +0200 +++ b/hgext/zeroconf/__init__.py Fri Oct 24 11:35:47 2008 -0500 @@ -122,8 +122,8 @@ return p return orig(self, section, key, default, untrusted) -def configitems(orig, self, section): - r = orig(self, section, untrusted=False) +def configitems(orig, self, section, untrusted=False): + r = orig(self, section, untrusted) if section == "paths": r += getzcpaths() return r