changeset 508:e5dedda7bee0

utility_commands: remove old svn version command in favor of new wrapper
author Augie Fackler <durin42@gmail.com>
date Mon, 14 Dec 2009 09:36:22 -0600
parents 4ce09bf4d382
children ac9c9e1a8022
files hgsubversion/utility_commands.py
diffstat 1 files changed, 0 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- 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,
 }