Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cloudooo
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
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cloudooo
Commits
d373f9cf
Commit
d373f9cf
authored
Jan 16, 2012
by
Gabriel Monnerat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "Create response_dict with key mime to avoid KeyError on the ERP5 side"
This reverts commit
1346047c
.
parent
1346047c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletion
+3
-1
cloudooo/manager.py
cloudooo/manager.py
+3
-1
No files found.
cloudooo/manager.py
View file @
d373f9cf
...
...
@@ -250,8 +250,8 @@ class Manager(object):
zip
=
True
else
:
zip
=
False
response_dict
=
dict
(
mime
=
mimetypes
.
types_map
.
get
(
'.%s'
%
extension
))
try
:
response_dict
=
{}
# XXX - use html format instead of xhtml
if
orig_format
in
(
"presentation"
,
"graphics"
,
...
...
@@ -267,6 +267,8 @@ class Manager(object):
response_dict
[
'mime'
]
=
"application/zip"
elif
extension
==
'xhtml'
:
response_dict
[
'mime'
]
=
"text/html"
else
:
response_dict
[
'mime'
]
=
mimetypes
.
types_map
.
get
(
'.%s'
%
extension
)
return
(
200
,
response_dict
,
""
)
except
Exception
,
e
:
logger
.
error
(
e
)
...
...
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