work around non-correctness of Domino with regard to cookie encoding

This commit is contained in:
Benjamin Dauvergne 2014-03-14 14:27:35 +01:00
parent 1bd2408700
commit 1d07a77711
1 changed files with 6 additions and 0 deletions

View File

@ -7,3 +7,9 @@ class Plugin(object):
def get_apps(self):
return [__name__]
from django.utils.six.moves import http_cookies
import Cookie
_new_legal_chars = http_cookies._quote.func_defaults[0] + '/='
http_cookies._quote.func_defaults = (_new_legal_chars,) + http_cookies._quote.func_defaults[1:]