Delete unnessary as e

It seems that this as e is not used,so we can delete it

Change-Id: Ia1ff3854943478d502ebae1daf3af84f43c6cd79
This commit is contained in:
jiansong 2016-09-22 21:54:44 -07:00
parent c519fb4ed1
commit 4dc495e948
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ class HTTPClient(TroveClientMixin):
resp, body = self.request(self.management_url + url, method,
**kwargs)
return resp, body
except exceptions.BadRequest as e:
except exceptions.BadRequest:
if attempts > self.retries:
raise
except exceptions.Unauthorized: