| Index: gcl.py
 | 
| diff --git a/gcl.py b/gcl.py
 | 
| index 56655c294c5df87d85b1d2528c4351699b509055..ce6edabab23214f7e5bceca346bc895305e2a726 100755
 | 
| --- a/gcl.py
 | 
| +++ b/gcl.py
 | 
| @@ -1045,7 +1045,8 @@ def CMDcommit(change_info, args):
 | 
|        elif revision:
 | 
|          change_info.description += "\nCommitted: " + revision
 | 
|        change_info.CloseIssue()
 | 
| -      props = change_info.RpcServer().get_issue_properties(change_info.issue)
 | 
| +      props = change_info.RpcServer().get_issue_properties(
 | 
| +          change_info.issue, False)
 | 
|        patch_num = len(props['patchsets'])
 | 
|        comment = "Committed patchset #%d manually as r%s" % (patch_num, revision)
 | 
|        comment += ' (presubmit successful).' if not bypassed else '.'
 | 
| 
 |