Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

8

9

10

#!/usr/bin/env python 

import os 

import sys 

 

5 ↛ exitline 5 didn't exit the module, because the condition on line 5 was never falseif __name__ == "__main__": 

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "ROOT.settings") 

 

from django.core.management import execute_from_command_line 

 

execute_from_command_line(sys.argv)