summaryrefslogtreecommitdiff
path: root/fs/zipfs.py
diff options
context:
space:
mode:
authorwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2010-06-20 15:33:56 +0000
committerwillmcgugan <willmcgugan@67cdc799-7952-0410-af00-57a81ceafa0f>2010-06-20 15:33:56 +0000
commit32191193804d618d0633d4a4c31d4982e729dc13 (patch)
tree4453d81b170b9807b389003bcfb1924422eb7a7f /fs/zipfs.py
parent38ee8158bb71e981da6cd9233c36aa8463a8774b (diff)
downloadpyfilesystem-32191193804d618d0633d4a4c31d4982e729dc13.tar.gz
Fixed a few issues that had accumulated in Google Code, bumped the version up to 0.3.0
git-svn-id: http://pyfilesystem.googlecode.com/svn/trunk@372 67cdc799-7952-0410-af00-57a81ceafa0f
Diffstat (limited to 'fs/zipfs.py')
-rw-r--r--fs/zipfs.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/zipfs.py b/fs/zipfs.py
index d532639..5ea4f73 100644
--- a/fs/zipfs.py
+++ b/fs/zipfs.py
@@ -126,8 +126,7 @@ class ZipFS(FS):
@synchronize
def open(self, path, mode="r", **kwargs):
- path = normpath(relpath(path))
- self.zip_path = path
+ path = normpath(relpath(path))
if 'r' in mode:
if self.zip_mode not in 'ra':