[Mailman-Developers] A small patch. Manual.py

Mikhail Sobolev mikhail.sobolev@transas.com
Mon, 3 Sep 2001 16:58:34 +0100


--17pEHd4RhPHOinZp
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

Today I tried to install the CVS version on my computer.  Here is the
patch that helped me.

Regards,

--
Misha

--17pEHd4RhPHOinZp
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="mm.patch"

Index: Manual.py
===================================================================
RCS file: /cvsroot/mailman/mailman/Mailman/MTA/Manual.py,v
retrieving revision 2.1
diff -u -b -r2.1 Manual.py
--- Manual.py	2001/08/04 02:04:47	2.1
+++ Manual.py	2001/09/03 15:41:57
@@ -24,6 +24,7 @@
 from Mailman.Queue.sbcache import get_switchboard
 from Mailman.i18n import _
 from Mailman.MTA.Utils import makealiases
+from Mailman.Utils import get_site_email
 
 
 
@@ -60,7 +61,7 @@
     if not cgi:
         print >> outfp
         return
-    siteowner = Utils.get_site_email()
+    siteowner = get_site_email()
     msg = Message.UserNotification(
         siteowner, siteowner,
         _('Mailing list creation request for list %(listname)s'),
@@ -103,7 +104,7 @@
     if not cgi:
         print >> outfp
         return
-    siteowner = Utils.get_site_email()
+    siteowner = get_site_email()
     msg = Message.UserNotification(
         siteowner, siteowner,
         _('Mailing list removal request for list %(listname)s'),

--17pEHd4RhPHOinZp--