Добавлена обработка заголовков запроса X-Forwarded...
[vpproxy.git] / vlcclient / vlcclient.py
index 80fc0f7850974d3aea32ffd03107a368d29a8b26..1fa5e4330d5feb7640febe5c42575956efea45ed 100644 (file)
@@ -9,7 +9,6 @@ import telnetlib
 import logging
 from vlcmessages import *
 import time
-from pprint import pprint
 
 class VlcException(Exception):
 
@@ -181,7 +180,6 @@ class VlcClient(object):
       self._resultlock.acquire()
       to_stop=set()
       for stream,lasttime in self.streams.iteritems():
-        print stream,lasttime
         if time.time()-lasttime>timeout:
           to_stop.add(stream)
       for stream in to_stop: