Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(180)

Unified Diff: git-try

Issue 548223: git-try was broken by r37650 (Closed)
Patch Set: Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: git-try
diff --git a/git-try b/git-try
index 6365615322afc6d20ec543eac40fe27e4d5b8e3b..9c2b88878ba10defadc629fa44cb41391ce83acc 100755
--- a/git-try
+++ b/git-try
@@ -19,13 +19,13 @@ import trychange
def GetRietveldIssueNumber():
return GIT.Capture(
['config', 'branch.%s.rietveldissue' % GIT.GetBranch(None)],
- error_ok=True)
+ error_ok=True)[0]
def GetRietveldPatchsetNumber():
return GIT.Capture(
['config', 'branch.%s.rietveldpatchset' % GIT.GetBranch(None)],
- error_ok=True)
+ error_ok=True)[0]
def GetRietveldServerUrl():
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698