tabulate: fix stat -> statistic in _statistic().
authorW. Trevor King <wking@tremily.us>
Mon, 22 Oct 2012 00:06:40 +0000 (20:06 -0400)
committerW. Trevor King <wking@tremily.us>
Mon, 22 Oct 2012 00:06:40 +0000 (20:06 -0400)
pygrader/tabulate.py

index d8a962d00615ac48ad4e28e6124993d25c285073..4237b293ced2bb225e66fb1766f5e5c4e6142312 100644 (file)
@@ -62,18 +62,18 @@ def _statistic(iterabale, statistic):
         _LOG.warning('error importing numpy, falling back to workarounds')
         _LOG.warning(str(_numpy_import_error))
         _numpy_import_error = None
         _LOG.warning('error importing numpy, falling back to workarounds')
         _LOG.warning(str(_numpy_import_error))
         _numpy_import_error = None
-    if stat == 'Mean':
+    if statistic == 'Mean':
         if _numpy is None:  # work around missing numpy
             return _mean(iterable)
         else:
             return gs.mean()
         if _numpy is None:  # work around missing numpy
             return _mean(iterable)
         else:
             return gs.mean()
-    elif stat == 'Std. Dev.':
+    elif statistic == 'Std. Dev.':
         if _numpy is None:  # work around missing numpy
             sval = _std(iterable)
         else:
             return gs.std()
     else:
         if _numpy is None:  # work around missing numpy
             sval = _std(iterable)
         else:
             return gs.std()
     else:
-        raise NotImplementedError(stat)
+        raise NotImplementedError(statistic)
 
 def tabulate(course, statistics=False, stream=None, use_color=None, **kwargs):
     """Return a table of student's grades to date
 
 def tabulate(course, statistics=False, stream=None, use_color=None, **kwargs):
     """Return a table of student's grades to date