From b68c1a962b0f5b0f76cda7a98ef6b136e3d92514 Mon Sep 17 00:00:00 2001 From: cedricbonhomme Date: Fri, 9 Mar 2012 08:03:40 +0100 Subject: No more mutex in pyAggr3g470r.py --- pyAggr3g470r.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'pyAggr3g470r.py') diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py index dd6cc9c8..47e4f973 100755 --- a/pyAggr3g470r.py +++ b/pyAggr3g470r.py @@ -43,7 +43,6 @@ import re import time import cherrypy import calendar -import threading from collections import Counter import datetime @@ -1253,7 +1252,6 @@ class Root: if __name__ == '__main__': # Point of entry in execution mode print "Launching pyAggr3g470r..." - LOCKER = threading.Lock() root = Root() root.favicon_ico = cherrypy.tools.staticfile.handler(filename=os.path.join(utils.path + "/img/favicon.png")) @@ -1261,4 +1259,4 @@ if __name__ == '__main__': cherrypy.config.update({'error_page.404': error_page_404}) _cp_config = {'request.error_response': handle_error} - cherrypy.quickstart(root, "/" ,config=utils.path + "/cfg/cherrypy.cfg") + cherrypy.quickstart(root, "/" ,config=utils.path + "/cfg/cherrypy.cfg") \ No newline at end of file -- cgit