Changeset 546 for trunk/email2trac.py.in


Ignore:
Timestamp:
08/10/11 12:39:18 (13 years ago)
Author:
bas
Message:

renamed email2trac_workflow to mail_workflow and preparing for 2.4.0 release

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/email2trac.py.in

    r545 r546  
    645645########## TRAC ticket functions  ###########################################################
    646646
    647     def email2trac_workflow(self, tkt):
    648         """
    649         """
    650         self.logger.debug('function email2trac_workflow: ')
     647    def mail_workflow(self, tkt):
     648        """
     649        """
     650        self.logger.debug('function mail_workflow: ')
    651651       
    652652        req = Mock(authname=self.author, perm=MockPerm(), args={})
     
    910910        if self.parameters.email_triggers_workflow and (self.VERSION >= 0.11):
    911911
    912             if not self.email2trac_workflow(tkt):
     912            if not self.mail_workflow(tkt):
    913913
    914914                if tkt['status'] in ['closed']:
     
    11971197
    11981198        if self.parameters.email_triggers_workflow and (self.VERSION >= 0.11):
    1199             if self.email2trac_workflow(tkt):
     1199            if self.mail_workflow(tkt):
    12001200                changed = True
    12011201
Note: See TracChangeset for help on using the changeset viewer.