Changed *args => *exc_info in CloudFilesStorageObjectWrapper

This commit is contained in:
Joar Wandborg 2011-09-05 22:33:27 +02:00
parent c2b862d134
commit 213285cd85

View File

@ -347,7 +347,7 @@ class CloudFilesStorageObjectWrapper():
"""
return self
def __exit__(self, *args):
def __exit__(self, *exc_info):
"""
Context Manger API implementation
see self.__enter__()