Allow a trailing slash in the rietveld url.

Review URL: http://codereview.chromium.org/7894003

git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@101356 0039d316-1c4b-4281-b951-d872f2087c98
parent 3c74bc9d
...@@ -638,7 +638,7 @@ def TryChange(argv, ...@@ -638,7 +638,7 @@ def TryChange(argv,
# Try to extract the review number if possible and fix the protocol. # Try to extract the review number if possible and fix the protocol.
if not '://' in options.rietveld_url: if not '://' in options.rietveld_url:
options.rietveld_url = 'http://' + options.rietveld_url options.rietveld_url = 'http://' + options.rietveld_url
match = re.match(r'^(.*)/(\d+)$', options.rietveld_url) match = re.match(r'^(.*)/(\d+)/?$', options.rietveld_url)
if match: if match:
if options.issue or options.patchset: if options.issue or options.patchset:
parser.error('Cannot use both --issue and use a review number url') parser.error('Cannot use both --issue and use a review number url')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment