Browse Source

ignore cases when looking for `script`

Elisha Hollander 3 years ago
parent
commit
8b198e4616
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pywebio/platform/bokeh.py

+ 1 - 1
pywebio/platform/bokeh.py

@@ -149,7 +149,7 @@ def show_app(app, state, notebook_url, port=0, **kw):
             \g<2>
             \g<2>
         });
         });
     </script>
     </script>
-    """, script)
+    """, script, flags=re.I)
 
 
     put_html(script, sanitize=False)
     put_html(script, sanitize=False)