Dolda2000 GitWeb
/
ashd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
699754d
)
python: Fixed QUERY_STRING bug in ashd-wsgi.
author
Fredrik Tolf
<fredrik@dolda2000.com>
Sat, 23 Oct 2010 06:21:30 +0000
(08:21 +0200)
committer
Fredrik Tolf
<fredrik@dolda2000.com>
Sat, 23 Oct 2010 06:21:30 +0000
(08:21 +0200)
python/ashd-wsgi
patch
|
blob
|
blame
|
history
diff --git
a/python/ashd-wsgi
b/python/ashd-wsgi
index
dc3bc91
..
beb39ca
100755
(executable)
--- a/
python/ashd-wsgi
+++ b/
python/ashd-wsgi
@@
-50,8
+50,8
@@
def dowsgi(req):
name = req.url
p = name.find('?')
if p >= 0:
- name = name[:p]
env["QUERY_STRING"] = name[p + 1:]
+ name = name[:p]
else:
env["QUERY_STRING"] = ""
if name[-len(req.rest):] == req.rest: