From 78c1380c39b2f2630addb5bacf588f3b0281729b Mon Sep 17 00:00:00 2001 From: Adrian Likins Date: Wed, 12 Nov 2008 11:48:27 -0500 Subject: Make ping subcommand use the default verbose setting if not specified. --- func/overlord/cmd_modules/ping.py | 1 + 1 file changed, 1 insertion(+) (limited to 'func') diff --git a/func/overlord/cmd_modules/ping.py b/func/overlord/cmd_modules/ping.py index 8c77ada..50c5c38 100644 --- a/func/overlord/cmd_modules/ping.py +++ b/func/overlord/cmd_modules/ping.py @@ -34,6 +34,7 @@ class Ping(base_command.BaseCommand): """ # FIXME: verbose and port should be added globally to all sub modules self.parser.add_option("-v", "--verbose", dest="verbose", + default=self.verbose, action="store_true") def handleOptions(self, options): -- cgit