# HG changeset patch # User Thomas Arendsen Hein # Date 1125043315 -7200 # Node ID 1539ca091d86fa65fa7f58176f587989224f3463 # Parent d8279ca39dc776c9e39d6473fbfd263c4e876069 Added missing doc strings for two new debug commmands. diff -r d8279ca39dc7 -r 1539ca091d86 mercurial/commands.py --- 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' % (