From 63691dde668a1fe7dfadc226016fbe55aef8209e Mon Sep 17 00:00:00 2001 From: Daniel Weschke Date: Sat, 3 Apr 2021 21:53:55 +0200 Subject: [PATCH] change host to 0.0.0.0 so it is reachable in local network --- controldeck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controldeck.py b/controldeck.py index 9ea30fa..3f91a0f 100644 --- a/controldeck.py +++ b/controldeck.py @@ -131,7 +131,7 @@ def application(): return wp def main(): - justpy() + justpy(host="0.0.0.0") if __name__ == '__main__': sys.exit(main())