2009-10-21 03:29:27 +04:00
|
|
|
#!/usr/bin/env python
|
2010-03-13 02:37:51 +03:00
|
|
|
import sys
|
2014-08-08 16:08:46 +04:00
|
|
|
|
|
|
|
|
2016-01-05 09:17:13 +03:00
|
|
|
# This needs to be imported so it can perform path adjustments necessary for
|
|
|
|
# management command discovery, since that's one of the very few Django
|
|
|
|
# functions that doesn't import all apps.
|
|
|
|
from olympia import startup
|
|
|
|
|
|
|
|
|
2015-08-25 23:42:00 +03:00
|
|
|
if __name__ == "__main__":
|
2015-08-25 08:20:35 +03:00
|
|
|
from django.core.management import execute_from_command_line
|
2011-07-15 03:17:31 +04:00
|
|
|
|
2014-08-08 16:08:46 +04:00
|
|
|
execute_from_command_line(sys.argv)
|