diff options
author | Adrian Likins <alikins@redhat.com> | 2008-03-28 17:06:10 -0400 |
---|---|---|
committer | Adrian Likins <alikins@redhat.com> | 2008-03-28 17:06:10 -0400 |
commit | bf3dd19ae0644107116fe690fa86333b20021f76 (patch) | |
tree | 35b064d8b95afa65325b7bd8f8a1dc12d92d6b6f /func/overlord/cmd_modules/ping.py | |
parent | b2d8973c777e0c00192aeaa7e0a02b21675ba132 (diff) | |
download | func-bf3dd19ae0644107116fe690fa86333b20021f76.tar.gz func-bf3dd19ae0644107116fe690fa86333b20021f76.tar.xz 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/ping.py')
-rw-r--r-- | func/overlord/cmd_modules/ping.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/func/overlord/cmd_modules/ping.py b/func/overlord/cmd_modules/ping.py index 3a0e6ac..ef866ae 100644 --- a/func/overlord/cmd_modules/ping.py +++ b/func/overlord/cmd_modules/ping.py @@ -19,11 +19,11 @@ import pprint import stat import xmlrpclib -from func.overlord import command +from func.overlord import base_command from func.overlord import client -class Ping(client.command.BaseCommand): +class Ping(base_command.BaseCommand): name = "ping" usage = "see what func minions are up/accessible" |