summaryrefslogtreecommitdiffstats
path: root/func/overlord/cmd_modules/listminions.py
diff options
context:
space:
mode:
authorAdrian Likins <alikins@redhat.com>2008-03-28 17:06:10 -0400
committerAdrian Likins <alikins@redhat.com>2008-03-28 17:06:10 -0400
commitbf3dd19ae0644107116fe690fa86333b20021f76 (patch)
tree35b064d8b95afa65325b7bd8f8a1dc12d92d6b6f /func/overlord/cmd_modules/listminions.py
parentb2d8973c777e0c00192aeaa7e0a02b21675ba132 (diff)
downloadthird_party-func-bf3dd19ae0644107116fe690fa86333b20021f76.tar.gz
third_party-func-bf3dd19ae0644107116fe690fa86333b20021f76.tar.xz
third_party-func-bf3dd19ae0644107116fe690fa86333b20021f76.zip
move command.py:BaseCommand() to it's own module, base_command.py
update the cmd_modules/* classes accordingly also cleanup some imports in the cmd_modules/* classes
Diffstat (limited to 'func/overlord/cmd_modules/listminions.py')
-rw-r--r--func/overlord/cmd_modules/listminions.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/func/overlord/cmd_modules/listminions.py b/func/overlord/cmd_modules/listminions.py
index f5a62c8..6e9c657 100644
--- a/func/overlord/cmd_modules/listminions.py
+++ b/func/overlord/cmd_modules/listminions.py
@@ -17,10 +17,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
import optparse
import os
-from func.overlord import command
-from func.overlord import client
+from func.overlord import base_command
-class ListMinions(client.command.BaseCommand):
+class ListMinions(base_command.BaseCommand):
name = "list_minions"
usage = "show known minions"