Edgewall Software

Changeset 13372


Ignore:
Timestamp:
Nov 21, 2014, 7:35:39 AM (10 years ago)
Author:
Ryan J Ollos
Message:

1.0.3dev: Replace class attributes of TicketNotifyEmail with instance attributes. Refs #2259.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.0-stable/trac/ticket/notification.py

    r12637 r13372  
    146146
    147147    template_name = "ticket_notify_email.txt"
    148     ticket = None
    149     newticket = None
    150     modtime = 0
    151148    from_email = 'trac+ticket@localhost'
    152149    COLS = 75
     
    158155                                              'single')
    159156        self.ambiwidth = 2 if ambiguous_char_width == 'double' else 1
     157        self.ticket = None
     158        self.modtime = 0
     159        self.newticket = None
    160160
    161161    def notify(self, ticket, newticket=True, modtime=None):
Note: See TracChangeset for help on using the changeset viewer.