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

Unified Diff: rietveld.py

Issue 11348122: Add presubmit check to verify issue is not closed. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: addr M-A comments, refactored rietveld call Created 8 years, 1 month 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
Index: rietveld.py
diff --git a/rietveld.py b/rietveld.py
index d4ac39bab08060ea3c6414d3b9ad32b986d266f0..cab91407e481839c3a953c9666fe018162b7a449 100644
--- a/rietveld.py
+++ b/rietveld.py
@@ -86,7 +86,7 @@ class Rietveld(object):
def get_issue_properties(self, issue, messages):
"""Returns all the issue's metadata as a dictionary."""
- url = '/api/%d' % issue
+ url = '/api/%s' % issue
M-A Ruel 2012/11/21 20:48:38 Why? It was %d on purpose.
if messages:
url += '?messages=true'
return json.loads(self.get(url))

Powered by Google App Engine
This is Rietveld 408576698