| Index: git_cl.py | 
| diff --git a/git_cl.py b/git_cl.py | 
| index 6e564010d1a47e59752891611b37fbce551a643b..778c07f5929b47ec65d5f11d226aa5a4424c10f3 100755 | 
| --- a/git_cl.py | 
| +++ b/git_cl.py | 
| @@ -1510,11 +1510,11 @@ def GerritUpload(options, args, cl): | 
| if CHANGE_ID not in change_desc.description: | 
| AddChangeIdToCommitMessage(options, args) | 
|  | 
| -  commits = RunGit(['rev-list', '%s/%s...' % (remote, branch)]).splitlines() | 
| +  commits = RunGit(['rev-list', '%s/%s..' % (remote, branch)]).splitlines() | 
| if len(commits) > 1: | 
| print('WARNING: This will upload %d commits. Run the following command ' | 
| 'to see which commits will be uploaded: ' % len(commits)) | 
| -    print('git log %s/%s...' % (remote, branch)) | 
| +    print('git log %s/%s..' % (remote, branch)) | 
| print('You can also use `git squash-branch` to squash these into a single' | 
| 'commit.') | 
| ask_for_data('About to upload; enter to confirm.') | 
|  |