소스 검색

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)