From 891ac4d5855800d40ff5bac96dc0e8598eddfe34 Mon Sep 17 00:00:00 2001 From: Philip Eisenlohr Date: Thu, 25 Aug 2016 12:17:27 -0400 Subject: [PATCH] fixed comma syntax error --- processing/post/groupTable.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/processing/post/groupTable.py b/processing/post/groupTable.py index f9c6693ed..924105fba 100755 --- a/processing/post/groupTable.py +++ b/processing/post/groupTable.py @@ -32,7 +32,7 @@ parser.add_option('-f','--function', help = 'mapping function [%default]') parser.add_option('-a','--all', dest = 'all', - action = 'store_true' + action = 'store_true', help = 'apply mapping function also to grouping column') parser.set_defaults(function = 'np.average')