Ignore:
Timestamp:
04/01/13 12:00:55 (11 years ago)
Author:
István Váradi <ivaradi@…>
Branch:
default
hg-Phase:
(<MercurialRepository 1 'hg:/home/ivaradi/mlx/hg' '/'>, 'public')
Message:

Added the ID of the ticket to the reply dialog (re #190)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/mlx/web.py

    r488 r491  
    811811
    812812        result = Result()
     813        result.success = False
    813814
    814815        attributes = {}
     
    816817            attributes["reporter"] = self._email
    817818
    818         id = serverProxy.ticket.create(self._summary, self._description,
    819                                        attributes, True)
    820         print "Created ticket with ID:", id
     819        result.ticketID = serverProxy.ticket.create(self._summary, self._description,
     820                                                    attributes, True)
     821        print "Created ticket with ID:", result.ticketID
    821822        result.success = True
    822823
Note: See TracChangeset for help on using the changeset viewer.