From 6dfe0552165f13e26210c65351715e21d3346b9b Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sun, 21 Oct 2012 20:09:54 -0400 Subject: [PATCH] tabulate: fix iterabale -> iterable typo in _statistic(). --- pygrader/tabulate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygrader/tabulate.py b/pygrader/tabulate.py index 4237b29..1236b84 100644 --- a/pygrader/tabulate.py +++ b/pygrader/tabulate.py @@ -53,7 +53,7 @@ if _numpy is None: else: _statistics_container = _numpy.array -def _statistic(iterabale, statistic): +def _statistic(iterable, statistic): """Calculate statistics on an list of numbers """ global _numpy_import_error -- 2.26.2