From 717ab9369dcd8f3a5b486f6c21913a5cf663ff1a Mon Sep 17 00:00:00 2001 From: Chmouel Boudjnah Date: Mon, 6 Jan 2014 11:03:09 -0800 Subject: Remove ununsed httplib2 requirement This is not needed anymore since the logging is handled by six.moves/httplib. Change-Id: I4315860648258fb760ea22ca09d0083d7c9afb6c Closes-Bug: #1266584 --- heatclient/shell.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'heatclient/shell.py') 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 -- cgit v1.2.1