Browse Source

Merge branch 'master' of http://git.choozmo.com:3000/choozmo/bhouse_backstage

deployer 3 years ago
parent
commit
bf5f6c831d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      backstage/editor/routes.py

+ 2 - 2
backstage/editor/routes.py

@@ -6,5 +6,5 @@ editor_app = Blueprint('editor', __name__)
 
 @editor_app.route('/backstage/editor')
 def editor():
-    url = request.args.get('url', type=str, bhouse_server=BHOUSE_SERVER)
-    return render_template('editor.html', title='Type Editor', url=url)
+    url = request.args.get('url', type=str)
+    return render_template('editor.html', title='Type Editor', url=url, bhouse_server=BHOUSE_SERVER)