Closed nvinson closed 11 months ago
When trying to start limnoria_reset_password.py, it immediately crashes due to stack overflow. The stack overflow is caused by main() recursively calling itself.
The fix is to change the call to main() at https://github.com/progval/Limnoria/blob/master/src/scripts/limnoria_reset_password.py#L107 to _main(). I.e: prefix the call to main() with a single underscore.
main()
_main()
my bad, sorry
When trying to start limnoria_reset_password.py, it immediately crashes due to stack overflow. The stack overflow is caused by main() recursively calling itself.
The fix is to change the call to
main()
at https://github.com/progval/Limnoria/blob/master/src/scripts/limnoria_reset_password.py#L107 to_main()
. I.e: prefix the call tomain()
with a single underscore.