Closed ashtonwu closed 7 years ago
In the download(self, args) function, it checks to see if type(filename).name is 'str' or 'instance'. In Python 3.X version of the io lib, type(io.StringIO()).name** is 'StringIO'. Therefore, this function always returns the error message.
fixed with this PR: https://github.com/adamhajari/spyre/pull/62
In the download(self, args) function, it checks to see if type(filename).name is 'str' or 'instance'. In Python 3.X version of the io lib, type(io.StringIO()).name** is 'StringIO'. Therefore, this function always returns the error message.