The hardcoded "/" in the base_app_folder split was causing issues on Windows machines, where the seperator is "\\". Using os.sep fixes this issue and ensures compatibility with Windows computers for Flask-Plugins (and the applications depending on it)
Coverage remained the same when pulling 8259063adfe2786bfc000ad06939c90d48d871e3 on caspervg:master into 269e994a67edb85ea67ac1c90f9f97dff2866e45 on sh4nks:master.
The hardcoded
"/"
in the base_app_folder split was causing issues on Windows machines, where the seperator is"\\"
. Usingos.sep
fixes this issue and ensures compatibility with Windows computers for Flask-Plugins (and the applications depending on it)