From 578e420cfbb35d32001e992504c80f759eaddebd Mon Sep 17 00:00:00 2001 From: bwarsaw Date: Tue, 22 May 2001 21:02:51 +0000 Subject: create(), remove(): Take an optional flag `cgi' which indicates whether this is being invoked through-the-web (ttw). This is required by the API but ignored by the functions in this module. --- Mailman/MTA/Postfix.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mailman/MTA/Postfix.py b/Mailman/MTA/Postfix.py index d72a1ff73..6becbceaf 100644 --- a/Mailman/MTA/Postfix.py +++ b/Mailman/MTA/Postfix.py @@ -108,7 +108,7 @@ def addlist(mlist, db, fp): -def create(mlist): +def create(mlist, cgi=0): # Acquire the global list database lock lock = makelock() lock.lock() @@ -143,7 +143,7 @@ def create(mlist): -def remove(mlist): +def remove(mlist, cgi=0): # Acquire the global list database lock lock = LockFile.LockFile(LOCKFILE) lock.lock() -- cgit v1.3.1