If you are busy developing and didn't do a pip install -e . yet, saq foo.settings is not equivalent to python -m saq foo.settings due to the prior only having access to installed modules.
This adds the current path to the module path so that it will work for both cases.
If you are busy developing and didn't do a
pip install -e .
yet,saq foo.settings
is not equivalent topython -m saq foo.settings
due to the prior only having access to installed modules.This adds the current path to the module path so that it will work for both cases.