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
Improperly entered environment variables cause parsing of attacks to fail---not on upload, but on displaying and running.
Instead of implementing our own parsing, we could consider using the parser in https://github.com/theskumar/python-dotenv (or copying it out, if we don't need the library's extra functionality).
The text was updated successfully, but these errors were encountered:
When no `=` is present in a line (including blank lines, which shouldn't
cause issues), the parser fails to split on `=` and throws an error.
This simply adds a try-catch around that to ignore values that would
fail.
This is a stopgap fix for #99.
Improperly entered environment variables cause parsing of attacks to fail---not on upload, but on displaying and running.
Instead of implementing our own parsing, we could consider using the parser in https://github.com/theskumar/python-dotenv (or copying it out, if we don't need the library's extra functionality).
The text was updated successfully, but these errors were encountered: