You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lua: summary.lua:24: attempt to index a nil value (local 'profile')
stack traceback:
summary.lua:24: in function 'ReadProfile'
summary.lua:110: in main chunk
[C]: in ?
It seems to me that ReadProfile expects either a file object or a filename, but it's in fact called with either a file object (if the file contains a single profile) or a line from the ile (if the file contains multiple profiles)? In my case the report contains multiple file names, so it sends a single line to ReadProfile, which tries to open the line as a string. At least as far as I can understand.
The text was updated successfully, but these errors were encountered:
I'm getting a crash:
It seems to me that
ReadProfile
expects either a file object or a filename, but it's in fact called with either a file object (if the file contains a single profile) or a line from the ile (if the file contains multiple profiles)? In my case the report contains multiple file names, so it sends a single line toReadProfile
, which tries to open the line as a string. At least as far as I can understand.The text was updated successfully, but these errors were encountered: