From 1df2fb749b716b0e140ee763d338927fe1769587 Mon Sep 17 00:00:00 2001 From: Athanasius Date: Fri, 2 Jul 2021 17:07:46 +0000 Subject: [PATCH] Relay: Add missing `from bottle import ..., request, ...` --- src/eddn/Relay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/eddn/Relay.py b/src/eddn/Relay.py index 9843c79..10629d4 100644 --- a/src/eddn/Relay.py +++ b/src/eddn/Relay.py @@ -22,7 +22,7 @@ from eddn.conf.Settings import Settings, loadConfig from gevent import monkey monkey.patch_all() -from bottle import Bottle, get, response, run +from bottle import Bottle, get, request, response, run app = Bottle() # This import must be done post-monkey-patching!