From 3c8805287a6c991a3c8388db959160eab7009ebb Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Sun, 16 May 2021 12:19:06 +0300 Subject: [PATCH] fleast: Remove deamonizer --- main.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/main.py b/main.py index 36138e2..8da4065 100755 --- a/main.py +++ b/main.py @@ -2,7 +2,6 @@ # -*- coding: utf-8 -*- import cherrypy -from cherrypy.process.plugins import Daemonizer from twitch import TwitchClient ver = '1.9.0-pre-3' @@ -102,7 +101,6 @@ class FleastServer(object): def main(): server = FleastServer() - d = Daemonizer(cherrypy.engine).subscribe() cherrypy.quickstart(server, '/', './server.conf')