diff options
Diffstat (limited to 'misc/Cookie.py')
| -rw-r--r-- | misc/Cookie.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/Cookie.py b/misc/Cookie.py index c359977c0..d2fe81c22 100644 --- a/misc/Cookie.py +++ b/misc/Cookie.py @@ -451,7 +451,7 @@ class Morsel(UserDict): # Now add any defined attributes for K,V in self.items(): - if not V: continue + if V == '': continue if K == "expires" and type(V) == type(1): RA("%s=%s;" % (self.__reserved[K], _getdate(V))) elif K == "max-age" and type(V) == type(1): |
