blob: bc4bb0184fa5787e7644448967f2d2de57a9e6d1 [file] [log] [blame]
#!/usr/bin/env python
# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from django.core.management import execute_manager
try:
import settings # Assumed to be in the same directory.
except ImportError:
import sys
sys.exit(1)
if __name__ == "__main__":
execute_manager(settings)