formats size to readable format
(self)
| 221 | return "%.2i:%.2i:%.2i" % (hours, minutes, seconds) |
| 222 | |
| 223 | def formatSize(self): |
| 224 | """ formats size to readable format """ |
| 225 | return formatSize(self.getSize()) |
| 226 | |
| 227 | def formatETA(self): |
| 228 | """ formats eta to readable format """ |
no test coverage detected