When I create new run configurations in Eclipse it creates a run command like the following: python.exe -u manage.py runscript my_script.py
, regardless of whether I try making a Python Run config, or a Django run config.
How do I make it run python.exe manage.py runscript my_script.py
instead? (no -u switch).
I've assumed the -u is why it's breaking, as running python.exe manage.py runscript my_script.py
works just fine from a plain old bash prompt.