summaryrefslogtreecommitdiff
path: root/ceilometerclient/shell.py
diff options
context:
space:
mode:
authorAngus Salkeld <asalkeld@redhat.com>2013-05-20 12:52:58 +1000
committerAngus Salkeld <asalkeld@redhat.com>2013-05-20 13:08:31 +1000
commitae142c0ffe0c10348ef3e6ff38bbffae5cdd6f59 (patch)
treee5c89fdba755afce7e5246e27804b97508e4a6ff /ceilometerclient/shell.py
parentb324ccc37bc6c0dfded22ba5b4eccc96642791ba (diff)
downloadpython-ceilometerclient-ae142c0ffe0c10348ef3e6ff38bbffae5cdd6f59.tar.gz
Fix pep H402 and H401 errors
This is an effort to get the pep ignores to be closer to nova. Change-Id: I451df579bbead00a8ff2c301c1a84e7c0a896002
Diffstat (limited to 'ceilometerclient/shell.py')
-rw-r--r--ceilometerclient/shell.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/ceilometerclient/shell.py b/ceilometerclient/shell.py
index 87b4840..51fa32b 100644
--- a/ceilometerclient/shell.py
+++ b/ceilometerclient/shell.py
@@ -313,9 +313,7 @@ class CeilometerShell(object):
@utils.arg('command', metavar='<subcommand>', nargs='?',
help='Display help for <subcommand>')
def do_help(self, args):
- """
- Display help about this program or one of its subcommands.
- """
+ """Display help about this program or one of its subcommands."""
if getattr(args, 'command', None):
if args.command in self.subcommands:
self.subcommands[args.command].print_help()