Error due to missing arg in call to analyzer.getReporter
Brought to you by:
tbear
Getting:
Traceback (most recent call last):
File "difftool.py", line 553, in <module>
main()
File "difftool.py", line 521, in main
set1 = build_tree(config.file1)
File "difftool.py", line 274, in build_tree
return build_logfile_tree(file)
File "difftool.py", line 246, in build_logfile_tree
reporter = analyzer.getReporter(file_name)
TypeError: getReporter() takes exactly 2 arguments (1 given)
I got it to work by changing line #246 in difftool.py from:
reporter = analyzer.getReporter(file_name)
to:
reporter = analyzer.getReporter(file_name, tx_data_set)
Thanks for the report. I'll look at including this in the next release.