Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Merge pull request #412 from ormsbee/master
Browse files Browse the repository at this point in the history
Fix for AttributeError when closing connections
  • Loading branch information
victortrac committed Dec 4, 2011
2 parents 4cf83ab + 9bb97b2 commit 1a9a4c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boto/connection.py
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,7 @@ def close(self):
and making a new request will open a connection again."""

boto.log.debug('closing all HTTP connections')
self.connection = None # compat field
self._connection = None # compat field

class AWSQueryConnection(AWSAuthConnection):

Expand Down

0 comments on commit 1a9a4c4

Please sign in to comment.