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

Unified Diff: appengine/cr-buildbucket/api.py

Issue 2005333002: swarmbucket: add get_builders api (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: fix tests Created 4 years, 7 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 | appengine/cr-buildbucket/main.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/cr-buildbucket/api.py
diff --git a/appengine/cr-buildbucket/api.py b/appengine/cr-buildbucket/api.py
index 81864f65657dc5f20dba19fddf47e8ccee511816..23c54a466f58b4d13da2513c5fefd51aa02e9e46 100644
--- a/appengine/cr-buildbucket/api.py
+++ b/appengine/cr-buildbucket/api.py
@@ -7,12 +7,12 @@ import json
import logging
from google.appengine.ext import ndb
-
-from components import auth
-from components import utils
from protorpc import messages
from protorpc import message_types
from protorpc import remote
+
+from components import auth
+from components import utils
import gae_ts_mon
import acl
@@ -176,7 +176,7 @@ def catch_errors(fn, response_message_class):
def buildbucket_api_method(
request_message_class, response_message_class, **kwargs):
- """Extends auth.endpoints_method by converting service errors."""
+ """Defines a buildbucket API method."""
endpoints_decorator = auth.endpoints_method(
request_message_class, response_message_class, **kwargs)
« no previous file with comments | « no previous file | appengine/cr-buildbucket/main.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698