Added missing doc strings for two new debug commmands.
--- a/mercurial/commands.py Fri Aug 26 09:56:33 2005 +0200
+++ b/mercurial/commands.py Fri Aug 26 10:01:55 2005 +0200
@@ -595,6 +595,7 @@
raise util.Abort(".hg/dirstate inconsistent with current parent's manifest")
def debugconfig(ui):
+ """show combined config settings from all hgrc files"""
try:
repo = hg.repository(ui)
except: pass
@@ -641,6 +642,7 @@
ui.write("}\n")
def debugwalk(ui, repo, *pats, **opts):
+ """show how files match on given patterns"""
items = list(walk(repo, pats, opts))
if not items: return
fmt = '%%s %%-%ds %%-%ds %%s' % (