diff options
| author | viega | 1998-06-13 21:57:19 +0000 |
|---|---|---|
| committer | viega | 1998-06-13 21:57:19 +0000 |
| commit | 2f8ffdc4ad7698777e3afc14f146caab8aa4cb88 (patch) | |
| tree | ee5bdf39a92ad6add99e0bfc20203a1266254259 /cgi/edithtml | |
| parent | 901fb95186006a6bb6bfcd66bafbdbff9ccb8097 (diff) | |
| download | mailman-2f8ffdc4ad7698777e3afc14f146caab8aa4cb88.tar.gz mailman-2f8ffdc4ad7698777e3afc14f146caab8aa4cb88.tar.zst mailman-2f8ffdc4ad7698777e3afc14f146caab8aa4cb88.zip | |
Add Unlock() calls where appropriate, and add lock = 0 to MailList
constructor actuals when the list doesn't need to be locked.
Diffstat (limited to 'cgi/edithtml')
| -rwxr-xr-x | cgi/edithtml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cgi/edithtml b/cgi/edithtml index f2c5264d0..509bf25a7 100755 --- a/cgi/edithtml +++ b/cgi/edithtml @@ -58,7 +58,7 @@ if len(list_info) < 1: list_name = string.lower(list_info[0]) try: - list = maillist.MailList(list_name) + list = maillist.MailList(list_name, lock=0) except: doc.AddItem(htmlformat.Header(2, "%s : No such list" % list_name)) print doc.Format() @@ -173,4 +173,3 @@ finally: print doc.Format() except: pass - list.Unlock() |
