Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Kiste
studfeed
Commits
e5e7fb2e
Commit
e5e7fb2e
authored
Nov 08, 2017
by
Kiste
Browse files
Fix bracket
parent
8cdafd73
Changes
1
Hide whitespace changes
Inline
Side-by-side
studfeed/wsgi.py
View file @
e5e7fb2e
...
...
@@ -12,5 +12,5 @@ def application(environ, start_response):
except
:
start_response
(
'500 Internal Server Error'
,
[(
'Content-Type'
,
'text/plain'
)])
return
[]
start_response
(
'200 OK'
,
[(
'Content-Type'
,
'application/atom+xml'
),
(
"Content-Length"
,
str
(
len
(
feed
))])
start_response
(
'200 OK'
,
[(
'Content-Type'
,
'application/atom+xml'
),
(
"Content-Length"
,
str
(
len
(
feed
))
)
])
return
[
feed
]
Write
Preview
Supports
Markdown
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