Changeset 217 for trunk


Ignore:
Timestamp:
08/07/08 14:27:38 (16 years ago)
Author:
bas
Message:

email2trac.py.in:

  • See Changelog
Location:
trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r216 r217  
    88  * Reopen closed ticket if an update is received via email, closes #70
    99    Requested by: Garrett McGrath gmcgrath add princeton dot edu
     10    Fixed by: Bas van der Vlies
     11
     12
     13  * The [DEFAULT] section did not work any more due to change to internal
     14    trac parser, closes ticket #73
     15    Reported by: email2trac at bulk dot squeakyblue dot com
    1016    Fixed by: Bas van der Vlies
    1117
  • trunk/debian/changelog

    r213 r217  
     1email2trac (0.30-3) stable; urgency=low
     2
     3  * Non-maintainer upload.
     4  * Reopen ticket if an email update is received
     5
     6 -- root <root@subtrac2.rc.sara.nl>  Mon, 04 Aug 2008 16:14:12 +0200
     7
    18email2trac (0.30-2) stable; urgency=low
    29
  • trunk/email2trac.py.in

    r215 r217  
    8787import urllib
    8888import unicodedata
    89 import ConfigParser
    9089from stat import *
    9190import mimetypes
     
    11091108        Parse the config file
    11101109        """
    1111 
    11121110        if not os.path.isfile(file):
    11131111                print 'File %s does not exist' %file
     
    11301128
    11311129        else:
    1132                 project = config.defaults()
     1130                # use some trac internales to get the defaults
     1131                #
     1132                project = config.parser.defaults()
    11331133
    11341134        return project
Note: See TracChangeset for help on using the changeset viewer.