py3port: use floor division where applicable

This commit is contained in:
The MMGen Project 2018-10-31 13:38:21 +00:00
commit 46f44b645b
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
17 changed files with 50 additions and 51 deletions

View file

@ -112,4 +112,4 @@ run_tests()
t = int(time.time()) - start_time
m = '\nAll requested tests finished OK, elapsed time: {:02}:{:02}'
gmsg(m.format(t/60,t%60))
gmsg(m.format(t//60,t%60))