bug [ 1108948 ] Cookie.py produces invalid code

This commit is contained in:
Georg Brandl 2005-06-26 21:02:49 +00:00
parent 7e7688c2ec
commit 03a33ea3a8
1 changed files with 2 additions and 2 deletions

View File

@ -470,9 +470,9 @@ class Morsel(dict):
def js_output(self, attrs=None):
# Print javascript
return """
<SCRIPT LANGUAGE="JavaScript">
<script type="text/javascript">
<!-- begin hiding
document.cookie = \"%s\"
document.cookie = \"%s\";
// end hiding -->
</script>
""" % ( self.OutputString(attrs), )