wesabe / fixofx

Python utility that canonicalizes various financial data file formats to OFX 2, which is an XML format and hence a lot easier for other code to deal with. It recognizes OFX 1.x, OFX 2.x, QFX, QIF, and OFC.
Apache License 2.0
101 stars 37 forks source link

Help i'm getting a syntax error #10

Open oasec1 opened 7 years ago

oasec1 commented 7 years ago

the error is a syntax error and its coming from this first line

except StandardError, detail: <----------------------------------------this is line 178 print "Exception during file read:\n%s" % detail print "Exiting." sys.stderr.write("fixofx failed with error code 1\n") sys.exit(1)

Here is the rror message

D:\fixofx>python fixofx.py d:\fixofx\history.qif File "fixofx.py", line 178 except StandardError, detail: ^ SyntaxError: invalid syntax

Thanks Robert