I am using version 0.7.4 of bw2io on windows 10 through miniconda3 and attempting to import ecospold1 datasets into brightway.
During this process I found that any importer class using the Ecospold1DataExtractor will fail due to the process_filemethod using filename instead of filepath in its print statements.
My fix to this was to change the filename variable to filepath, which revolved the error.
Original report by Daniël de Koning (Bitbucket: dgdekoning, GitHub: dgdekoning).
Hello!
I am using version 0.7.4 of bw2io on windows 10 through miniconda3 and attempting to import ecospold1 datasets into brightway.
During this process I found that any importer class using the Ecospold1DataExtractor will fail due to the
process_file
method usingfilename
instead offilepath
in its print statements.My fix to this was to change the
filename
variable tofilepath
, which revolved the error.