summaryrefslogtreecommitdiff
blob: 211c4ab968d7b4f6f7601f27dc32031f9714c914 (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", "gosbs.settings")
    from django.core.management import execute_from_command_line
    execute_from_command_line(sys.argv)