| 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)
|
|
|
|
|