Skip to content
This repository was archived by the owner on Jun 22, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Change log

### v0.12.2
* Fix a bug that prevents using middleware via a custom Bottle.

### v0.12.1
* Check that Chrome path is a file that exists on Windows before blindly returning it.

Expand Down
2 changes: 1 addition & 1 deletion eel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def run_lambda():
app = _start_args['app'] # type: btl.Bottle
for route_path, route_params in BOTTLE_ROUTES.items():
route_func, route_kwargs = route_params
app.route(path=route_path, callback=route_func, **route_kwargs)
btl.route(path=route_path, callback=route_func, **route_kwargs)

return btl.run(
host=HOST,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name='Eel',
version='0.12.1',
version='0.12.2',
author='Chris Knott',
author_email='[email protected]',
url='https://github.com/samuelhwilliams/Eel',
Expand Down