summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZooko O'Whielacronx <zooko@zooko.com>2012-03-20 20:18:50 -0600
committerZooko O'Whielacronx <zooko@zooko.com>2012-03-20 20:18:50 -0600
commitd372285574f88dfd5b141a64875941f620258505 (patch)
tree654ef0a6c8e2538dfcc743fbdd08536407572117
parent82ebbc9be379aae9b5474a50a5f8a873a3752d72 (diff)
bench: fix shallow bug in workaround for pyflakes bogus warning in fallback for non-importable pyutil
-rw-r--r--src/pycryptopp/bench/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pycryptopp/bench/common.py b/src/pycryptopp/bench/common.py
index 9cf124b..24ad619 100644
--- a/src/pycryptopp/bench/common.py
+++ b/src/pycryptopp/bench/common.py
@@ -42,7 +42,7 @@ except ImportError:
from decimal import Decimal
print "time units per second: %s; seconds per time unit: %s" % (UNITS_PER_SECOND, Decimal(1)/UNITS_PER_SECOND)
- rep_bench = this_print_bench_footer
+ rep_bench = this_rep_bench
print_bench_footer = this_print_bench_footer
import random as insecurerandom