Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pyfs
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
pyfs
Commits
ffb5d43d
Commit
ffb5d43d
authored
Aug 13, 2012
by
gcode@loowis.durge.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Looks like closing() was being used incorrectly. Fixes Issue 124
parent
2c1dc391
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
+1
-2
fs/zipfs.py
+1
-2
No files found.
fs/zipfs.py
View file @
ffb5d43d
...
@@ -8,7 +8,6 @@ A FS object that represents the contents of a Zip file
...
@@ -8,7 +8,6 @@ A FS object that represents the contents of a Zip file
import
datetime
import
datetime
import
os.path
import
os.path
from
contextlib
import
closing
from
fs.base
import
*
from
fs.base
import
*
from
fs.path
import
*
from
fs.path
import
*
...
@@ -205,7 +204,7 @@ class ZipFS(FS):
...
@@ -205,7 +204,7 @@ class ZipFS(FS):
contents
=
self
.
zf
.
read
(
self
.
_encode_path
(
path
))
contents
=
self
.
zf
.
read
(
self
.
_encode_path
(
path
))
except
KeyError
:
except
KeyError
:
raise
ResourceNotFoundError
(
path
)
raise
ResourceNotFoundError
(
path
)
return
closing
(
StringIO
(
contents
)
)
return
StringIO
(
contents
)
if
'w'
in
mode
:
if
'w'
in
mode
:
if
self
.
zip_mode
not
in
'wa'
:
if
self
.
zip_mode
not
in
'wa'
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment