summaryrefslogtreecommitdiff
path: root/rsa/key.py
diff options
context:
space:
mode:
Diffstat (limited to 'rsa/key.py')
-rw-r--r--rsa/key.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rsa/key.py b/rsa/key.py
index 196f78d..1004412 100644
--- a/rsa/key.py
+++ b/rsa/key.py
@@ -783,7 +783,7 @@ if __name__ == '__main__':
if failures:
break
- if (count and count % 10 == 0) or count == 1:
+ if (count % 10 == 0 and count) or count == 1:
print('%i times' % count)
except KeyboardInterrupt:
print('Aborted')