summaryrefslogtreecommitdiff
path: root/heatclient/shell.py
diff options
context:
space:
mode:
authorChmouel Boudjnah <chmouel@enovance.com>2014-01-06 11:03:09 -0800
committerChmouel Boudjnah <chmouel@enovance.com>2014-01-06 12:14:11 -0800
commit717ab9369dcd8f3a5b486f6c21913a5cf663ff1a (patch)
tree2c4abc734c7942dde6d7c0c2b9b29afa216a0f1c /heatclient/shell.py
parente2d7ebff7ebde4d5d7f64440c1d550153466768b (diff)
downloadpython-heatclient-717ab9369dcd8f3a5b486f6c21913a5cf663ff1a.tar.gz
Remove ununsed httplib2 requirement
This is not needed anymore since the logging is handled by six.moves/httplib. Change-Id: I4315860648258fb760ea22ca09d0083d7c9afb6c Closes-Bug: #1266584
Diffstat (limited to 'heatclient/shell.py')
-rw-r--r--heatclient/shell.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/heatclient/shell.py b/heatclient/shell.py
index ecfc887..82b05df 100644
--- a/heatclient/shell.py
+++ b/heatclient/shell.py
@@ -17,7 +17,6 @@ Command-line interface to the Heat API.
from __future__ import print_function
import argparse
-import httplib2
import logging
import six
import sys
@@ -278,8 +277,6 @@ class HeatShell(object):
format="%(levelname)s (%(module)s:%(lineno)d) %(message)s",
level=logging.DEBUG)
- httplib2.debuglevel = 1
-
def _setup_verbose(self, verbose):
if verbose:
exc.verbose = 1