mirror of https://github.com/python/cpython
bug [ 1108948 ] Cookie.py produces invalid code
This commit is contained in:
parent
7e7688c2ec
commit
03a33ea3a8
|
@ -470,9 +470,9 @@ class Morsel(dict):
|
||||||
def js_output(self, attrs=None):
|
def js_output(self, attrs=None):
|
||||||
# Print javascript
|
# Print javascript
|
||||||
return """
|
return """
|
||||||
<SCRIPT LANGUAGE="JavaScript">
|
<script type="text/javascript">
|
||||||
<!-- begin hiding
|
<!-- begin hiding
|
||||||
document.cookie = \"%s\"
|
document.cookie = \"%s\";
|
||||||
// end hiding -->
|
// end hiding -->
|
||||||
</script>
|
</script>
|
||||||
""" % ( self.OutputString(attrs), )
|
""" % ( self.OutputString(attrs), )
|
||||||
|
|
Loading…
Reference in New Issue