From: Fredrik Tolf Date: Thu, 17 Jan 2013 19:51:52 +0000 (+0100) Subject: python: Removed lingering thread name. X-Git-Tag: 0.12~6^3~4 X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=commitdiff_plain;h=9d6b46568635a6cbf151790e5fd760d2a86049a2 python: Removed lingering thread name. --- diff --git a/python3/ashd-wsgi3 b/python3/ashd-wsgi3 index 40a3722..db54e6e 100755 --- a/python3/ashd-wsgi3 +++ b/python3/ashd-wsgi3 @@ -158,7 +158,7 @@ def recode(thing): class reqthread(ashd.serve.wsgithread): def __init__(self, req): - super().__init__(name = "Request handler") + super().__init__() self.req = req.dup() def handlewsgi(self):