ソースを参照

Remove unused variable

Mike Naberezny 11 年 前
コミット
e3e0c968f8
1 ファイル変更1 行追加1 行削除
  1. 1 1
      supervisor/medusa/thread/thread_channel.py

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

@@ -119,7 +119,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)