From: Zack Cerza Date: Tue, 8 Oct 2013 16:40:28 +0000 (-0500) Subject: More PEP-8 cleanup X-Git-Tag: 1.1.0~1828 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=7805913e7494b6727fb789612dcd81f9869741d5;p=teuthology.git More PEP-8 cleanup Signed-off-by: Zack Cerza --- diff --git a/scripts/nuke.py b/scripts/nuke.py index eae0b06ec..836cf18b2 100644 --- a/scripts/nuke.py +++ b/scripts/nuke.py @@ -25,7 +25,7 @@ def parse_args(): '-v', '--verbose', action='store_true', default=None, help='be more verbose' - ) + ) parser.add_argument( '-t', '--targets', nargs='+', @@ -34,47 +34,47 @@ def parse_args(): default={}, dest='config', help='yaml config containing machines to nuke', - ) + ) parser.add_argument( '-a', '--archive', metavar='DIR', help='archive path for a job to kill and nuke', - ) + ) parser.add_argument( '--owner', help='job owner', - ) + ) parser.add_argument( '-p', '--pid', type=int, default=False, help='pid of the process to be killed', - ) + ) parser.add_argument( '-r', '--reboot-all', action='store_true', default=False, help='reboot all machines', - ) + ) parser.add_argument( '-s', '--synch-clocks', action='store_true', default=False, help='synchronize clocks on all machines', - ) + ) parser.add_argument( '-u', '--unlock', action='store_true', default=False, help='Unlock each successfully nuked machine, and output targets that' 'could not be nuked.' - ) + ) parser.add_argument( '-n', '--name', metavar='NAME', help='Name of run to cleanup' - ) + ) parser.add_argument( '-i', '--noipmi', action='store_true', default=False,