Mercurial > hg > numerics
changeset 69:5dceb1d05a29
fix syntax error
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Sat, 28 Feb 2015 16:59:08 -0800 |
parents | 07362c531a7e |
children | 7a979736bbfc |
files | numerics/histogram.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/numerics/histogram.py Sat Feb 28 16:13:14 2015 -0800 +++ b/numerics/histogram.py Sat Feb 28 16:59:08 2015 -0800 @@ -47,7 +47,7 @@ def __init__(self, **kwargs): kwargs.setdefault('formatter_class', argparse.RawTextHelpFormatter) kwargs.setdefault('description', __doc__) - CSVParser..__init__(self, **kwargs) + CSVParser.__init__(self, **kwargs) self.add_argument('-n', '--bins', dest='n_bins', type=int, help="number of bins") self.options = None