summaryrefslogtreecommitdiff
blob: eba76f2c09dbe5d8b4cd88491ee00ae5dd78aeae (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python
#
# Copyright 1998-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
import os
import sys

if __name__ == "__main__":
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "gentoo_main.settings")
    from django.core.management import execute_from_command_line
    execute_from_command_line(sys.argv)