summaryrefslogtreecommitdiff
path: root/cliff
diff options
context:
space:
mode:
authorDoug Hellmann <doug.hellmann@dreamhost.com>2012-08-31 07:31:21 -0400
committerDoug Hellmann <doug.hellmann@dreamhost.com>2012-08-31 07:31:21 -0400
commite67c97af85019af637e34e0f002c10fc95e4cae6 (patch)
treeca21994e7cc715277aead329ba487390a7b599b0 /cliff
parent77a170c24e7f2ae13fc2d27fe17d8fc711bc1531 (diff)
downloadcliff-e67c97af85019af637e34e0f002c10fc95e4cae6.tar.gz
Remove unused logging import
Change-Id: Idaa1d91a25f024b0c274ab7027b7faeac9b42361 Signed-off-by: Doug Hellmann <doug.hellmann@dreamhost.com>
Diffstat (limited to 'cliff')
-rw-r--r--cliff/help.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/cliff/help.py b/cliff/help.py
index 9a7f848..4182a76 100644
--- a/cliff/help.py
+++ b/cliff/help.py
@@ -1,5 +1,4 @@
import argparse
-import logging
import sys
from .command import Command
@@ -13,7 +12,6 @@ class HelpAction(argparse.Action):
instance, passed in as the "default" value for the action.
"""
def __call__(self, parser, namespace, values, option_string=None):
- log = logging.getLogger(__name__)
app = self.default
parser.print_help(app.stdout)
app.stdout.write('\nCommands:\n')