]> git.siccegge.de Git - tools.git/commitdiff
[backup-zfs] Add missing colon
authorChristoph Egger <christoph@christoph-egger.org>
Mon, 5 Jan 2015 17:56:13 +0000 (18:56 +0100)
committerChristoph Egger <christoph@christoph-egger.org>
Mon, 5 Jan 2015 17:59:51 +0000 (18:59 +0100)
backup-zfs

index 9d52e0635cf82b37fa3f9a28f5142a4ebbf59e8a..b530bc9fb8e636aa1ccb0a70bf0fc0f5a0fd31de 100755 (executable)
@@ -130,7 +130,7 @@ def sftp_send(dataset, reference=None):
 
             sys.stdout.write('\r')
             timedelta = time.time() - startt
-            print_colored(" %.3f GB DONE (%.3f MB/s) Total: %02d%02d:%02d" % ((1.0 * done) / (1024 ** 3), (done / (1024 ** 2 *timedelta)), timedelta/3600, (timedelta/60)%60, timedelta%60), 'green')
+            print_colored(" %.3f GB DONE (%.3f MB/s) Total: %02d:%02d:%02d" % ((1.0 * done) / (1024 ** 3), (done / (1024 ** 2 *timedelta)), timedelta/3600, (timedelta/60)%60, timedelta%60), 'green')
             digestfile.write("%s  %s\n" % (digest.hexdigest(), filename))
 
 def syncronize(local_datasets, remote_datasets):