diff options
author | bwarsaw <> | 2003-04-01 04:28:16 +0000 |
---|---|---|
committer | bwarsaw <> | 2003-04-01 04:28:16 +0000 |
commit | bdeefb716a934c1669ae67c00db7f2f50f38eb17 (patch) | |
tree | 60451ba8dce681bcedb998ccf8ebaafe7d801d60 | |
parent | 4c3584dd526a5e56383f654f13408fa53aa8c249 (diff) | |
download | mailman2-bdeefb716a934c1669ae67c00db7f2f50f38eb17.tar.gz mailman2-bdeefb716a934c1669ae67c00db7f2f50f38eb17.tar.xz mailman2-bdeefb716a934c1669ae67c00db7f2f50f38eb17.zip |
__init__(): Jon Parise caught a typo in the conversion to booleans.
-rw-r--r-- | Mailman/LockFile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/LockFile.py b/Mailman/LockFile.py index e862962b..d6c41e65 100644 --- a/Mailman/LockFile.py +++ b/Mailman/LockFile.py @@ -174,7 +174,7 @@ class LockFile: def __init__(self, lockfile, lifetime=DEFAULT_LOCK_LIFETIME, - withlogging=True): + withlogging=False): """Create the resource lock using lockfile as the global lock file. Each process laying claim to this resource lock will create their own |