changeset 1053:1539ca091d86

Added missing doc strings for two new debug commmands.
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 26 Aug 2005 10:01:55 +0200
parents d8279ca39dc7
children 5139ee9bfc38
files mercurial/commands.py
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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' % (