# HG changeset patch # User Augie Fackler # Date 1260804982 21600 # Node ID e5dedda7bee06850e777e03b1fd0c8e0e6c8373e # Parent 4ce09bf4d382284c08a374a954d304a01eaf129c utility_commands: remove old svn version command in favor of new wrapper diff --git a/hgsubversion/utility_commands.py b/hgsubversion/utility_commands.py --- a/hgsubversion/utility_commands.py +++ b/hgsubversion/utility_commands.py @@ -97,16 +97,8 @@ def listauthors(ui, args, authors=None, ui.status('%s\n' % '\n'.join(sorted(author_set))) -def version(ui, **opts): - """Show current version of hg and hgsubversion. - """ - ui.status('hg: %s\n' % hgutil.version()) - ui.status('svn bindings: %s\n' % svnwrap.version()) - ui.status('hgsubversion: %s\n' % util.version(ui)) - table = { 'genignore': genignore, 'info': info, 'listauthors': listauthors, - 'version': version, }