浏览代码

Remove unused variable

Mike Naberezny 11 年之前
父节点
当前提交
9154bcb2ca
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      supervisor/medusa/thread/thread_channel.py

+ 1 - 1
supervisor/medusa/thread/thread_channel.py

@@ -118,7 +118,7 @@ if __name__ == '__main__':
 
         def handle_accept (self):
             conn, addr = self.accept()
-            tp = thread_parent (conn, addr)
+            thread_parent(conn, addr)
 
     thread_server()
     #asyncore.loop(1.0, use_poll=1)