Index: git_cl.py |
diff --git a/git_cl.py b/git_cl.py |
index 0ac0f861c70875fef8e888316e18051cd873f25b..64ebcd9e42a7a1bc89231caa6dc2cf342438296b 100755 |
--- a/git_cl.py |
+++ b/git_cl.py |
@@ -1412,6 +1412,8 @@ def RietveldUpload(options, args, cl): |
upload_args = ['upload'] + upload_args + args |
logging.info('upload.RealMain(%s)', upload_args) |
issue, patchset = upload.RealMain(upload_args) |
+ issue = int(issue) |
+ patchset = int(patchset) |
except KeyboardInterrupt: |
sys.exit(1) |
except: |