From: W. Trevor King Date: Mon, 22 Oct 2012 00:09:54 +0000 (-0400) Subject: tabulate: fix iterabale -> iterable typo in _statistic(). X-Git-Url: http://git.tremily.us/?p=pygrader.git;a=commitdiff_plain;h=6dfe0552165f13e26210c65351715e21d3346b9b tabulate: fix iterabale -> iterable typo in _statistic(). --- 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