Completed
Push — master ( ebb95c...951ec2 )
by Camille
01:25
created

manage.py (2 issues)

1
#!/usr/bin/env python
2
import os
3
import sys
4
5
if __name__ == "__main__":
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable __name__ does not seem to be defined.
Loading history...
6
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "sigma.settings")
7
8
    from django.core.management import execute_from_command_line
9
10
    execute_from_command_line(sys.argv)
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable sys does not seem to be defined.
Loading history...
11