aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2012-03-09 08:03:40 +0100
committercedricbonhomme <devnull@localhost>2012-03-09 08:03:40 +0100
commitb68c1a962b0f5b0f76cda7a98ef6b136e3d92514 (patch)
treedb7e74d258b196da8233bc84916cd3c4f0984316
parentRemoved useless comment in index function. (diff)
downloadnewspipe-b68c1a962b0f5b0f76cda7a98ef6b136e3d92514.tar.gz
newspipe-b68c1a962b0f5b0f76cda7a98ef6b136e3d92514.tar.bz2
newspipe-b68c1a962b0f5b0f76cda7a98ef6b136e3d92514.zip
No more mutex in pyAggr3g470r.py
-rwxr-xr-xpyAggr3g470r.py4
1 files changed, 1 insertions, 3 deletions
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
bgstack15