Changeset 330


Ignore:
Timestamp:
03/23/10 13:37:08 (14 years ago)
Author:
bas
Message:

email2trac.py.in:

  • mail with attachments went wrong due to previous variable renaming commit
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/email2trac.py.in

    r329 r330  
    15171517                status   = None
    15181518               
    1519                 for p in message_parts:
     1519                for item in message_parts:
    15201520                        # Skip body parts
    1521                         if not isinstance(part, tuple):
     1521                        if not isinstance(item, tuple):
    15221522                                continue
    15231523                               
    1524                         (original, filename, part) = p
     1524                        (original, filename, part) = item
    15251525                        #
    15261526                        # Must be tuneables HvB
Note: See TracChangeset for help on using the changeset viewer.