# HG changeset patch # User Ivan Lezhankin # Date 1533555996 -10800 # Node ID 363d4c2cb880283e49bd4d292281880a0058c15b # Parent 0d18108ec153244084a7022c0c394ed7050180c5 hgsubversion: make the 'rev' argument a list type This will help us pass multiple rev arguments to the subcommands. diff --git a/hgsubversion/__init__.py b/hgsubversion/__init__.py --- a/hgsubversion/__init__.py +++ b/hgsubversion/__init__.py @@ -214,7 +214,7 @@ svncommandopts = [ ('', 'force', False, 'force an operation to happen'), ('', 'username', '', 'username for authentication'), ('', 'password', '', 'password for authentication'), - ('r', 'rev', '', 'Mercurial revision'), + ('r', 'rev', [], 'Mercurial revision'), ('', 'unsafe-skip-uuid-check', False, 'skip repository uuid check in rebuildmeta'), ]