From 05cf23791096fe0e7cdc3a7cd397b59d158a30af Mon Sep 17 00:00:00 2001 From: Rajath Agasthya Date: Fri, 28 Aug 2015 11:54:15 -0700 Subject: [PATCH] Fix incorrect code comment in api.py Parameter 'deployment' in service_list() method changed from UUID or name of the deployment to Deployment object Change-Id: I24d86e958b3badcc93725a6bb6fc390a6ef0e8d0 Closes-Bug: #1489559 --- rally/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rally/api.py b/rally/api.py index 8419d66ba4..6722d2e7ea 100644 --- a/rally/api.py +++ b/rally/api.py @@ -113,7 +113,7 @@ class Deployment(object): def service_list(cls, deployment): """Get the services list. - :param deployment: UUID or name of the deployment + :param deployment: Deployment object :returns: Service list """ # TODO(kun): put this work into objects.Deployment