Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Levin Zimmermann
erp5
Commits
723afe2e
Commit
723afe2e
authored
2 years ago
by
Kazuhiko Shiozaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
py2/py3: use BytesIO for bytes.
parent
5e588709
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
product/ERP5/bootstrap/erp5_core/ToolComponentTemplateItem/portal_components/tool.erp5.ContributionTool.py
...plateItem/portal_components/tool.erp5.ContributionTool.py
+3
-3
No files found.
product/ERP5/bootstrap/erp5_core/ToolComponentTemplateItem/portal_components/tool.erp5.ContributionTool.py
View file @
723afe2e
...
...
@@ -28,7 +28,7 @@
##############################################################################
import
re
from
six.moves
import
cStringIO
as
String
IO
from
io
import
Bytes
IO
from
six.moves
import
urllib
from
cgi
import
parse_header
import
os
...
...
@@ -167,7 +167,7 @@ class ContributionTool(BaseTool):
except
KeyError
:
raise
ValueError
(
'data must be provided'
)
if
data
is
not
None
:
file_object
=
String
IO
()
file_object
=
Bytes
IO
()
file_object
.
write
(
data
)
file_object
.
seek
(
0
)
kw
[
'file'
]
=
file_object
...
...
@@ -637,7 +637,7 @@ class ContributionTool(BaseTool):
url_file
=
urllib
.
request
.
urlopen
(
urllib
.
request
.
Request
(
url
,
headers
=
{
'Accept'
:
'*/*'
}))
data
=
url_file
.
read
()
# time out must be set or ... too long XXX
file_object
=
String
IO
()
file_object
=
Bytes
IO
()
file_object
.
write
(
data
)
file_object
.
seek
(
0
)
# if a content-disposition header is present,
...
...
This diff is collapsed.
Click to expand it.
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