diff options
| author | Dirk Mueller <dirk@dmllr.de> | 2013-06-09 11:07:27 +0200 |
|---|---|---|
| committer | Dirk Mueller <dirk@dmllr.de> | 2013-06-22 16:00:26 +0200 |
| commit | 62579fbb217f4c1a4668e793ebaafaf668619206 (patch) | |
| tree | 8a791ee5b60248ecc5f59b895c1e4049529ab918 /glanceclient/v1/client.py | |
| parent | d8a537c7fe9b1e455831d05d9ba0ab67e03fb3a5 (diff) | |
| download | python-glanceclient-62579fbb217f4c1a4668e793ebaafaf668619206.tar.gz | |
Start using Pyflakes and Hacking
Instead of globally ignoring pyflakes and
hacking warnings, only blacklist those that trigger
very frequently so far, in order to clean them
up in followup commits. Fix and start gating
on the rest already.
Change-Id: Ied7c7250061e3bf379e8286e8ce3b9e4af817faf
Diffstat (limited to 'glanceclient/v1/client.py')
| -rw-r--r-- | glanceclient/v1/client.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glanceclient/v1/client.py b/glanceclient/v1/client.py index 0f5980e..4d0fd27 100644 --- a/glanceclient/v1/client.py +++ b/glanceclient/v1/client.py @@ -29,7 +29,7 @@ class Client(http.HTTPClient): """ def __init__(self, *args, **kwargs): - """ Initialize a new client for the Images v1 API. """ + """Initialize a new client for the Images v1 API.""" super(Client, self).__init__(*args, **kwargs) self.images = images.ImageManager(self) self.image_members = image_members.ImageMemberManager(self) |
