# HG changeset patch # User Matt Mackall # Date 1224866147 18000 # Node ID b1a9ad7b464e0f1df432b58d553a443cc506ed34 # Parent b9bf36905b553d588f994f35e41f8d020f0dc61b zeroconf: don't break on hg showconfig diff -r b9bf36905b55 -r b1a9ad7b464e hgext/zeroconf/__init__.py --- 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