Skip to content

Commit

Permalink
Merge pull request #1092 from zrisher/pandas-19-1-compat
Browse files Browse the repository at this point in the history
Fix #1091 by removing erroneous kwa delim_whitespace
  • Loading branch information
MattHJensen authored Dec 19, 2016
2 parents 13f9fd5 + 0026fe3 commit 4ad570c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions taxcalc/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -681,8 +681,7 @@ def pdf_recid(recid):
fstring = '{:' + str(col_size) + '}'
out = out.applymap(fstring.format)
# write ascii output to specified ascii_filename
out.to_csv(ascii_filename, header=False, index=False,
delim_whitespace=True, sep='\t')
out.to_csv(ascii_filename, header=False, index=False, sep='\t')


def mtr_graph_data(calc1, calc2,
Expand Down

0 comments on commit 4ad570c

Please sign in to comment.