##// END OF EJS Templates
zeroconf: don't break on hg showconfig
Matt Mackall -
r7238:b1a9ad7b default
parent child Browse files
Show More
@@ -122,8 +122,8 b' def config(orig, self, section, key, def'
122 return p
122 return p
123 return orig(self, section, key, default, untrusted)
123 return orig(self, section, key, default, untrusted)
124
124
125 def configitems(orig, self, section):
125 def configitems(orig, self, section, untrusted=False):
126 r = orig(self, section, untrusted=False)
126 r = orig(self, section, untrusted)
127 if section == "paths":
127 if section == "paths":
128 r += getzcpaths()
128 r += getzcpaths()
129 return r
129 return r
General Comments 0
You need to be logged in to leave comments. Login now