calculates speed
(self)
| 235 | return "%.2i:%.2i:%.2i" % (hours, minutes, seconds) |
| 236 | |
| 237 | def getSpeed(self): |
| 238 | """ calculates speed """ |
| 239 | try: |
| 240 | return self.plugin.req.speed |
| 241 | except: |
| 242 | return 0 |
| 243 | |
| 244 | def getETA(self): |
| 245 | """ gets established time of arrival""" |
no outgoing calls
no test coverage detected