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
Labels
Merge Requests
141
Merge Requests
141
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
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
265e72e5
Commit
265e72e5
authored
Oct 16, 2022
by
Kazuhiko Shiozaki
Committed by
Jérome Perrin
Aug 21, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
py2/py3: use BytesIO for bytes.
parent
fcdbc1ce
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 @
265e72e5
...
@@ -28,7 +28,7 @@
...
@@ -28,7 +28,7 @@
##############################################################################
##############################################################################
import
re
import
re
from
six.moves
import
cStringIO
as
String
IO
from
io
import
Bytes
IO
from
six.moves
import
urllib
from
six.moves
import
urllib
from
cgi
import
parse_header
from
cgi
import
parse_header
import
os
import
os
...
@@ -167,7 +167,7 @@ class ContributionTool(BaseTool):
...
@@ -167,7 +167,7 @@ class ContributionTool(BaseTool):
except
KeyError
:
except
KeyError
:
raise
ValueError
(
'data must be provided'
)
raise
ValueError
(
'data must be provided'
)
if
data
is
not
None
:
if
data
is
not
None
:
file_object
=
String
IO
()
file_object
=
Bytes
IO
()
file_object
.
write
(
data
)
file_object
.
write
(
data
)
file_object
.
seek
(
0
)
file_object
.
seek
(
0
)
kw
[
'file'
]
=
file_object
kw
[
'file'
]
=
file_object
...
@@ -637,7 +637,7 @@ class ContributionTool(BaseTool):
...
@@ -637,7 +637,7 @@ class ContributionTool(BaseTool):
url_file
=
urllib
.
request
.
urlopen
(
urllib
.
request
.
Request
(
url
,
url_file
=
urllib
.
request
.
urlopen
(
urllib
.
request
.
Request
(
url
,
headers
=
{
'Accept'
:
'*/*'
}))
headers
=
{
'Accept'
:
'*/*'
}))
data
=
url_file
.
read
()
# time out must be set or ... too long XXX
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
.
write
(
data
)
file_object
.
seek
(
0
)
file_object
.
seek
(
0
)
# if a content-disposition header is present,
# if a content-disposition header is present,
...
...
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