[Checkins] SVN: z3c.jbot/trunk/z3c/jbot/manager.py One less dependency ; -).

Malthe Borch mborch at gmail.com
Thu Nov 29 11:27:29 EST 2007


Log message for revision 82028:
  One less dependency ;-).

Changed:
  U   z3c.jbot/trunk/z3c/jbot/manager.py

-=-
Modified: z3c.jbot/trunk/z3c/jbot/manager.py
===================================================================
--- z3c.jbot/trunk/z3c/jbot/manager.py	2007-11-29 14:06:33 UTC (rev 82027)
+++ z3c.jbot/trunk/z3c/jbot/manager.py	2007-11-29 16:27:28 UTC (rev 82028)
@@ -1,7 +1,7 @@
 import sys
 import os.path
 
-import zope.thread
+import threading
 
 def root_length(a, b):
     if b.startswith(a):
@@ -23,7 +23,7 @@
 
     return path
     
-class GlobalTemplateManager(zope.thread.local):
+class GlobalTemplateManager(threading.local):
     def __init__(self):
         self.templates = {}
         self.paths = {}



More information about the Checkins mailing list