From a5f82d5e00346f97d6ab991c16a40cbec6d60512 Mon Sep 17 00:00:00 2001 From: unknown Date: Wed, 13 May 2015 12:12:36 -0600 Subject: [PATCH] Neatened up output. --- p4SyncMissingFiles.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/p4SyncMissingFiles.py b/p4SyncMissingFiles.py index 0991738..15d418a 100644 --- a/p4SyncMissingFiles.py +++ b/p4SyncMissingFiles.py @@ -115,9 +115,9 @@ class P4SyncMissing: file_type_binary = 'binary+l' file_type_text = 'text' - client_file = None - file_action = None - file_type = None + client_file = None + file_action = None + file_type = None file_type_last = None # todo: use fewer threads, increase bucket size and use p4 threading @@ -206,11 +206,9 @@ class P4SyncMissing: print( " Done." ) if not options.quiet: - print( " Done." ) - end = time.clock() delta = end - start - output = "\nFinished in " + str(delta) + "s" + output = " Done. Finished in " + str(delta) + "s" print( output ) if __name__ == "__main__":