ソースを参照

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]



読み込み中…
キャンセル
保存