Changeset 491:3109e293df85 for src
- Timestamp:
- 04/01/13 12:00:55 (12 years ago)
- Branch:
- default
- Phase:
- public
- Location:
- src/mlx
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/gui/gui.py
r490 r491 1415 1415 if result.success: 1416 1416 type = MESSAGETYPE_INFO 1417 messageFormat = xstr("sendBugReport_success") 1417 messageFormat = xstr("sendBugReport_success") % (result.ticketID,) 1418 1418 secondaryMarkup = xstr("sendBugReport_success_sec") 1419 1419 else: -
src/mlx/web.py
r488 r491 811 811 812 812 result = Result() 813 result.success = False 813 814 814 815 attributes = {} … … 816 817 attributes["reporter"] = self._email 817 818 818 id= serverProxy.ticket.create(self._summary, self._description,819 attributes, True)820 print "Created ticket with ID:", id819 result.ticketID = serverProxy.ticket.create(self._summary, self._description, 820 attributes, True) 821 print "Created ticket with ID:", result.ticketID 821 822 result.success = True 822 823
Note:
See TracChangeset
for help on using the changeset viewer.