Benjamin Bradshaw
Results
1
comments of
Benjamin Bradshaw
So, it's possible to work around the issue like: ``` @app.route('/') def get_basic_file(): this_response = static_file('index.html', 'path') this_response.set_cookie('basic_cookie', 1) return this_response ``` But that isn't documented and seems to go...