Author: brosner
Date: Sat Dec 6 13:37:32 2008
New Revision: 44
Modified:
trunk/mailerdev/mailer/lockfile.py
Log:
Fixed a minor bug in the lockfile.py.
Modified: trunk/mailerdev/mailer/lockfile.py
==============================================================================
--- trunk/mailerdev/mailer/lockfile.py (original)
+++ trunk/mailerdev/mailer/lockfile.py Sat Dec 6 13:37:32 2008
@@ -163,7 +163,7 @@
self.hostname = socket.gethostname()
self.pid = os.getpid()
if threaded:
- tname = "%x-" % threading.current_thread().get_name()
+ tname = "%s-" % threading.current_thread().get_name()
else:
tname = ""
dirname = os.path.dirname(self.lock_file)
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"pinax-updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---