summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fs/zipfs.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/zipfs.py b/fs/zipfs.py
index 968b0e2..0c6be3d 100644
--- a/fs/zipfs.py
+++ b/fs/zipfs.py
@@ -8,7 +8,6 @@ A FS object that represents the contents of a Zip file
import datetime
import os.path
-from contextlib import closing
from fs.base import *
from fs.path import *
@@ -205,7 +204,7 @@ class ZipFS(FS):
contents = self.zf.read(self._encode_path(path))
except KeyError:
raise ResourceNotFoundError(path)
- return closing(StringIO(contents))
+ return StringIO(contents)
if 'w' in mode:
if self.zip_mode not in 'wa':