Chromium Code Reviews| Index: trychange.py |
| diff --git a/trychange.py b/trychange.py |
| index 164c4c6b1ea8c918361e492b6ce0766e3640a426..16e1fedfb07d6d07b66bfc6c91b78f6bf43e3131 100755 |
| --- a/trychange.py |
| +++ b/trychange.py |
| @@ -602,6 +602,9 @@ def TryChange(argv, |
| logging.debug(argv) |
| + # Strip off any @ in the user, otherwise svn gets confused. |
| + options.user = options.user.split('@', 1)[0] |
| + |
| if options.rietveld_url: |
| # Try to extract the review number if possible and fix the protocol. |
| if not '://' in options.rietveld_url: |