From: Joel Holdsworth Date: Sun, 19 Dec 2021 15:40:28 +0000 (+0000) Subject: git-p4: show progress as an integer X-Git-Tag: v2.35.0-rc0~25^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0f829620e6f2ccc441aef1ffd6c0a546b949ee39;p=thirdparty%2Fgit.git git-p4: show progress as an integer When importing files from Perforce, git-p4 periodically logs the progress of file transfers as a percentage. However, the value is printed as a float with an excessive number of decimal places. For example a typical update might contain the following message: Importing revision 12345 (26.199617677553135%) This patch simply rounds the value down to the nearest integer percentage value, greatly improving readability. Signed-off-by: Joel Holdsworth Acked-by: Luke Diamand Signed-off-by: Junio C Hamano --- diff --git a/git-p4.py b/git-p4.py index 74834736fa..a625077b83 100755 --- a/git-p4.py +++ b/git-p4.py @@ -3637,7 +3637,8 @@ class P4Sync(Command, P4UserMap): self.updateOptionDict(description) if not self.silent: - sys.stdout.write("\rImporting revision %s (%s%%)" % (change, cnt * 100 / len(changes))) + sys.stdout.write("\rImporting revision %s (%d%%)" % ( + change, (cnt * 100) // len(changes))) sys.stdout.flush() cnt = cnt + 1