Dolda2000 GitWeb
/
wrw.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ecbfa27
)
Fixed phttpdate bug.
author
Fredrik Tolf
<fredrik@dolda2000.com>
Sat, 7 Dec 2013 21:50:48 +0000
(22:50 +0100)
committer
Fredrik Tolf
<fredrik@dolda2000.com>
Sat, 7 Dec 2013 21:50:48 +0000
(22:50 +0100)
wrw/proto.py
patch
|
blob
|
blame
|
history
diff --git
a/wrw/proto.py
b/wrw/proto.py
index
1af091f
..
3dcf0d7
100644
(file)
--- a/
wrw/proto.py
+++ b/
wrw/proto.py
@@
-1,4
+1,4
@@
-import time
+import time
, calendar
statusinfo = {
400: ("Bad Request", "Invalid HTTP request."),
@@
-21,7
+21,7
@@
def phttpdate(dstr):
return None
tz = int(tz[1:])
tz = (((tz / 100) * 60) + (tz % 100)) * 60
- return
time.mktime(time.strptime(dstr, "%a, %d %b %Y %H:%M:%S")) - tz - time.altzone
+ return
calendar.timegm(time.strptime(dstr, "%a, %d %b %Y %H:%M:%S")) - tz
def pmimehead(hstr):
def pws(p):