浏览代码

Uhh, whoops.

pull/24/head
Ben Kurtovic 12 年前
父节点
当前提交
e90f7059a7
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      toolserver/cookies.py

+ 1
- 1
toolserver/cookies.py 查看文件

@@ -12,7 +12,7 @@ class _CookieManager(SimpleCookie):
super(_CookieManager, self).__init__(environ["HTTP_COOKIE"])
except (CookieError, AttributeError):
super(_CookieManager, self).__init__()
for cookie in self:
for cookie in self.keys():
if self[cookie].value is False:
del self[cookie]



正在加载...
取消
保存