89 return [user, password] |
89 return [user, password] |
90 |
90 |
91 def get_issue (ticket): |
91 def get_issue (ticket): |
92 global suds_client |
92 global suds_client |
93 user, password = credentials() |
93 user, password = credentials() |
94 return suds_client.service.mc_issue_get (user, password, ticket) |
94 print "get_issue: Retrieving issue data for %s" % ticket |
|
95 result = suds_client.service.mc_issue_get (user, password, ticket) |
|
96 print "Issue data recieved." |
|
97 return result |
95 |
98 |
96 def poll(): |
99 def poll(): |
97 global btannounce_timeout |
100 global btannounce_timeout |
98 global btannounce_id |
101 global btannounce_id |
99 |
102 |