(self, ellapsed_seconds)
| 948 | return '{:02}:{:02}:{:02}'.format(int(hours), int(minutes), int(seconds)) |
| 949 | |
| 950 | def print_time(self, ellapsed_seconds): |
| 951 | if self.env['print_time'] and not self.env['quiet']: |
| 952 | print('time {}'.format(self.seconds_to_hms(ellapsed_seconds))) |
| 953 | |
| 954 | def raw_to_qcow2(self, prebuilt=False, reverse=False): |
| 955 | if prebuilt or not os.path.exists(self.env['qemu_img_executable']): |