Commit 3d702127 by Jaakko Luttinen

Fix testproject/manage.py to be executable

testproject/manage.py could not be run as ./manage.py because
shebang was not the first line. Thus, the import commands raised
errors. Obviously, "python manage.py" worked but now even short
"./manage.py" works.
parent c91061a0
#!/usr/bin/env python
from __future__ import absolute_import
from __future__ import unicode_literals
#!/usr/bin/env python
import os
import sys
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment