changeset 595:200770235bf0

svncommands: rename the `help' function to `help_'. This avoids overriding the builtin `help' function; a possible source of confusion. No funcationality change.
author Dan Villiom Podlaski Christiansen <danchr@gmail.com>
date Wed, 31 Mar 2010 17:53:47 +0200
parents 3dbd3af0ffaf
children 066453cf2014
files hgsubversion/svncommands.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/hgsubversion/svncommands.py
+++ b/hgsubversion/svncommands.py
@@ -227,7 +227,7 @@ def rebuildmeta(ui, repo, args, **opts):
     branchinfofile.close()
 
 
-def help(ui, args=None, **opts):
+def help_(ui, args=None, **opts):
     """show help for a given subcommands or a help overview
     """
     if args:
@@ -403,7 +403,7 @@ table = {
     'info': info,
     'listauthors': listauthors,
     'update': update,
-    'help': help,
+    'help': help_,
     'rebuildmeta': rebuildmeta,
     'updateexternals': svnexternals.updateexternals,
     'verify': verify,