diff options
| author | Terry Howe <terrylhowe@gmail.com> | 2014-02-27 10:55:37 -0700 |
|---|---|---|
| committer | Terry Howe <terrylhowe@gmail.com> | 2014-02-27 10:55:37 -0700 |
| commit | e9015b94f91d3ff6972109fb21a2b5e7fd3b9a79 (patch) | |
| tree | 0669888cf5862bf0e697407048959ba459891ae7 /openstackclient/compute/v2 | |
| parent | b7f673cb81f1a6539739dc6d12eaef7455bf63fd (diff) | |
| download | python-openstackclient-e9015b94f91d3ff6972109fb21a2b5e7fd3b9a79.tar.gz | |
In anticipation of network agents, rename compute
Rename the compute agents in anticipation of network agents
Change-Id: I201121915638d89dfbe46a7e0026aa4c2777e590
Closes-Bug: #1285800
Diffstat (limited to 'openstackclient/compute/v2')
| -rw-r--r-- | openstackclient/compute/v2/agent.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/openstackclient/compute/v2/agent.py b/openstackclient/compute/v2/agent.py index c8fb6ccc..ae7ba962 100644 --- a/openstackclient/compute/v2/agent.py +++ b/openstackclient/compute/v2/agent.py @@ -26,7 +26,7 @@ from openstackclient.common import utils class CreateAgent(show.ShowOne): - """Create agent command""" + """Create compute agent command""" log = logging.getLogger(__name__ + ".CreateAgent") @@ -75,7 +75,7 @@ class CreateAgent(show.ShowOne): class DeleteAgent(command.Command): - """Delete agent command""" + """Delete compute agent command""" log = logging.getLogger(__name__ + ".DeleteAgent") @@ -95,7 +95,7 @@ class DeleteAgent(command.Command): class ListAgent(lister.Lister): - """List agent command""" + """List compute agent command""" log = logging.getLogger(__name__ + ".ListAgent") @@ -127,7 +127,7 @@ class ListAgent(lister.Lister): class SetAgent(show.ShowOne): - """Set agent command""" + """Set compute agent command""" log = logging.getLogger(__name__ + ".SetAgent") |
