fixed comma syntax error

This commit is contained in:
Philip Eisenlohr 2016-08-25 12:17:27 -04:00
parent 55d6adf1b8
commit 891ac4d585
1 changed files with 1 additions and 1 deletions

View File

@ -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')