From b303acbe73b6f4a61436b4885ffa67df8a4ac2c5 Mon Sep 17 00:00:00 2001 From: Ben Bangert Date: Tue, 30 Jun 2009 11:22:44 -0700 Subject: [PATCH] Updated xmlrpc patch to address comments --- buildbot/status/web/xmlrpc.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/buildbot/status/web/xmlrpc.py b/buildbot/status/web/xmlrpc.py index 785eb33..41e6bc1 100644 --- a/buildbot/status/web/xmlrpc.py +++ b/buildbot/status/web/xmlrpc.py @@ -28,10 +28,11 @@ class XMLRPCServer(xmlrpc.XMLRPC): lastbuild = builder.getBuild(-1) return Results[lastbuild.getResults()] - def xmlrpc_getAllLastBuilds(self, num_builds): + def xmlrpc_getLastBuildsAllBuilders(self, num_builds): """Return the last N completed builds for all builders. - 'num_builds' is the number of builds to return + 'num_builds' is the number of builds for each builder to + return """ all_builds = [] -- 2.11.4.GIT