We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 941a2c7 + 37df55f commit f2cdcf1Copy full SHA for f2cdcf1
gcloud/storage/exceptions.py
@@ -7,6 +7,8 @@ class ConnectionError(StorageError):
7
def __init__(self, response, content):
8
message = str(response) + content
9
super(ConnectionError, self).__init__(message)
10
+ # suppress deprecation warning under 2.6.x
11
+ self.message = message
12
13
14
class NotFoundError(ConnectionError):
0 commit comments