Changeset 488:0240f723563b
- Timestamp:
- 04/01/13 09:59:18 (12 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/web.py
r484 r488 13 13 import traceback 14 14 import xml.sax 15 import xmlrpclib 15 16 16 17 #--------------------------------------------------------------------------------------- … … 807 808 def run(self): 808 809 """Perform the sending of the bug report.""" 809 time.sleep(3)810 serverProxy = xmlrpclib.ServerProxy("http://mlx.varadiistvan.hu/rpc") 810 811 811 812 result = Result() 813 814 attributes = {} 815 if self._email: 816 attributes["reporter"] = self._email 817 818 id = serverProxy.ticket.create(self._summary, self._description, 819 attributes, True) 820 print "Created ticket with ID:", id 812 821 result.success = True 813 822
Note:
See TracChangeset
for help on using the changeset viewer.