Removed unused imports and variables.

Also fixes AUTHORS file. Previous version was copied directly from python-novaclient.

Change-Id: I33654b6fe7197efbff300ebaf4892a8b53d85c54
This commit is contained in:
Josh Kearney
2012-04-05 17:25:37 -05:00
parent 7b8532908b
commit 5628eeaf76
3 changed files with 22 additions and 22 deletions

38
AUTHORS
View File

@@ -1,21 +1,23 @@
Andrey Brindeyev <abrindeyev@griddynamics.com>
Andy Smith <github@anarkystic.com>
Antony Messerli <amesserl@rackspace.com>
Brian Lamar <brian.lamar@rackspace.com>
Brian Waldon <brian.waldon@rackspace.com>
Chris Behrens <cbehrens+github@codestud.com>
Christopher MacGown <ignoti+github@gmail.com>
Ed Leafe <ed@leafe.com>
Eldar Nugaev <eldr@ya.ru>
Hengqing Hu <hudayou@hotmail.com>
Ilya Alekseyev <ilyaalekseyev@acm.org>
Johannes Erdfelt <johannes.erdfelt@rackspace.com>
Josh Kearney <josh@jk0.org>
Kevin L. Mitchell <kevin.mitchell@rackspace.com>
Kirill Shileev <kshileev@griddynamics.com>
Lvov Maxim <mlvov@mirantis.com>
Matt Dietz <matt.dietz@rackspace.com>
Sandy Walsh <sandy@darksecretsoftware.com>
Adam Gandelman <adamg@canonical.com>
Alan Pevec <apevec@redhat.com>
Anthony Young <sleepsonthefloor@gmail.com>
Brian Waldon <bcwaldon@gmail.com>
Dean Troyer <dtroyer@gmail.com>
Dolph Mathews <dolph.mathews@gmail.com>
Gabriel Hurley <gabriel@strikeawe.com>
Ghe Rivero <ghe@debian.org>
Hengqing Hu <hudayou@hotmail.com>
Jenkins <jenkins@review.openstack.org>
Jesse Andrews <anotherjesse@gmail.com>
Joe Heck <heckj@mac.com>
Josh Kearney <josh@jk0.org>
Ken Thomas <krt@yahoo-inc.com>
Monty Taylor <mordred@inaugust.com>
Thierry Carrez <thierry@openstack.org>
Tihomir Trifonov <t.trifonov@gmail.com>
Vishvananda Ishaya <vishvananda@gmail.com>
Yaguang Tang <heut2008@gmail.com>
Zhongyue Luo <lzyeval@gmail.com>
Ziad Sawalha <github@highbridgellc.com>
jakedahn <jake@ansolabs.com>
termie <github@anarkystic.com>

View File

@@ -11,8 +11,6 @@ OpenStack Client interface. Handles the REST calls and responses.
import copy
import logging
import os
import time
import urllib
import urlparse
import httplib2
@@ -119,7 +117,7 @@ class HTTPClient(httplib2.Http):
if body:
try:
body = json.loads(body)
except ValueError, e:
except ValueError:
_logger.debug("Could not decode JSON from body: %s" % body)
else:
_logger.debug("No body was returned.")

View File

@@ -37,7 +37,7 @@ class Tenant(base.Resource):
description=new_description,
enabled=new_enabled)
self = retval
except Exception, e:
except Exception:
retval = None
return retval