Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Unified Diff: pending_manager.py

Issue 22859063: Converting Skia's SVNCheckout into GitCheckout. (Closed) Base URL: https://src.chromium.org/chrome/trunk/tools/commit-queue/
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | projects.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pending_manager.py
===================================================================
--- pending_manager.py (revision 219274)
+++ pending_manager.py (working copy)
@@ -463,7 +463,9 @@
issue_desc = git_cl.ChangeDescription(pending.description)
msg = 'Committed: %s' % pending.revision
if viewvc_url:
- viewvc_url = '%s%s' % (viewvc_url.rstrip('/'), pending.revision)
+ if 'googlesource' not in viewvc_url:
+ viewvc_url = viewvc_url.rstrip('/')
+ viewvc_url = '%s%s' % (viewvc_url, pending.revision)
msg = 'Committed: %s' % viewvc_url
issue_desc.append_footer(msg)
« no previous file with comments | « no previous file | projects.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698