summaryrefslogtreecommitdiff
path: root/fs/zipfs.py
diff options
context:
space:
mode:
authorwillmcgugan@gmail.com <willmcgugan@gmail.com@67cdc799-7952-0410-af00-57a81ceafa0f>2013-09-10 10:30:06 +0000
committerwillmcgugan@gmail.com <willmcgugan@gmail.com@67cdc799-7952-0410-af00-57a81ceafa0f>2013-09-10 10:30:06 +0000
commit8e61e817808aef82b39c409297a2fe496e659c7f (patch)
tree54fb31df2dc3cc17c940c62b5b34aba34f5bd489 /fs/zipfs.py
parent8f60b4dd25550ebd140562045e74cd47f86411e4 (diff)
downloadpyfilesystem-git-8e61e817808aef82b39c409297a2fe496e659c7f.tar.gz
Quick fix for Vlad
Diffstat (limited to 'fs/zipfs.py')
-rw-r--r--fs/zipfs.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/zipfs.py b/fs/zipfs.py
index 1064547..e499859 100644
--- a/fs/zipfs.py
+++ b/fs/zipfs.py
@@ -55,6 +55,9 @@ class _TempWriteFile(object):
def flush(self):
self._file.flush()
+ def seek(self, offset, whence):
+ return self._file.seek(offset, whence)
+
def __enter__(self):
return self