diff --git a/bigbashview/usr/lib/bbv/server/views.py b/bigbashview/usr/lib/bbv/server/views.py index 0506e33..4468cc1 100644 --- a/bigbashview/usr/lib/bbv/server/views.py +++ b/bigbashview/usr/lib/bbv/server/views.py @@ -272,6 +272,7 @@ def bbv_compat_mode(self, options, content, query): web.header('Content-Type', 'text/html; charset=UTF-8') execute_content = " ".join((content, unquote(self.original_qs))) if content.endswith(execute_ext): + execute_content = " ".join((content, unquote(self.original_qs))) return execute_handler().called(options, execute_content, query) if content.endswith(content_ext): return content_handler().called(options, content, query)