rp

simple email tools
git clone https://git.parazyd.org/rp
Log | Files | Refs | README | LICENSE

commit 78f647f39b6499fc1eb1b0ff7d4b65cb2b0ca6a5
parent a0ebd41326feaf9c1f1b30e1392f2b9cf4504465
Author: parazyd <parazyd@dyne.org>
Date:   Tue, 18 Sep 2018 12:55:55 +0200

Use float in rpsync's time report.

Diffstat:
Mbin/rpsync | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/rpsync b/bin/rpsync @@ -107,4 +107,4 @@ if __name__ == '__main__': T1 = time() main() T2 = time() - print(" * total time: %d seconds" % int(T2 - T1)) + print(" * total time: %.2f seconds" % (T2 - T1))