# HG changeset patch # User Dan Villiom Podlaski Christiansen # Date 1270050827 -7200 # Node ID 200770235bf08d54516772f4c7c767b5f150e5fb # Parent 3dbd3af0ffaf30426906d3a47927c67c1244244c svncommands: rename the `help' function to `help_'. This avoids overriding the builtin `help' function; a possible source of confusion. No funcationality change. diff --git a/hgsubversion/svncommands.py b/hgsubversion/svncommands.py --- 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,