Update of /cvsroot/mailman/mailman/Mailman/Archiver
In directory usw-pr-cvs1:/tmp/cvs-serv18406

Modified Files:
      Tag: Release_2_0_1-branch
        pipermail.py 
Log Message:

pipermail.py: Teensy bit of whitespace cleanup to check if Barry receives my
checkin msgs.



Index: pipermail.py
===================================================================
RCS file: /cvsroot/mailman/mailman/Mailman/Archiver/pipermail.py,v
retrieving revision 1.15.2.1
retrieving revision 1.15.2.2
diff -C2 -r1.15.2.1 -r1.15.2.2
*** pipermail.py        2001/05/29 13:41:39     1.15.2.1
--- pipermail.py        2001/06/01 22:30:16     1.15.2.2
***************
*** 63,67 ****
  # Abstract class for databases
  
! class DatabaseInterface:    
      def __init__(self): pass
      def close(self): pass
--- 63,67 ----
  # Abstract class for databases
  
! class DatabaseInterface:
      def __init__(self): pass
      def close(self): pass
***************
*** 163,173 ****
        if id == "":
              self.msgid = str(self.sequence)
!       else: self.msgid = id
  
        if message.has_key('Subject'):
              self.subject = str(message['Subject'])
        else:
              self.subject = 'No subject'
-       if self.subject == "": self.subject = 'No subject'
  
          self._set_date(message)
--- 163,175 ----
        if id == "":
              self.msgid = str(self.sequence)
!       else:
!             self.msgid = id
  
        if message.has_key('Subject'):
              self.subject = str(message['Subject'])
        else:
+             self.subject = 'No subject'
+       if self.subject == "":
              self.subject = 'No subject'
  
          self._set_date(message)
***************
*** 181,185 ****
        self.author = strip_separators(self.author)
  
!       if self.author == "": self.author = self.email
  
        # Save the In-Reply-To:, References:, and Message-ID: lines
--- 183,188 ----
        self.author = strip_separators(self.author)
  
!       if self.author == "":
!             self.author = self.email
  
        # Save the In-Reply-To:, References:, and Message-ID: lines
***************
*** 198,203 ****
        else:
            match = msgid_pat.search(i_r_t)
!           if match is None: self.in_reply_to = ''
!           else: self.in_reply_to = strip_separators(match.group(1))
                
        references = message.getheader('References')
--- 201,208 ----
        else:
            match = msgid_pat.search(i_r_t)
!           if match is None:
!                 self.in_reply_to = ''
!           else:
!                 self.in_reply_to = strip_separators(match.group(1))
                
        references = message.getheader('References')


_______________________________________________
Mailman-checkins mailing list
[EMAIL PROTECTED]
http://mail.python.org/mailman/listinfo/mailman-checkins

Reply via email to