adjutant/stacktask/__init__.py
adriant a20978ac96 Some cleanup of documentation and licenses
* mainly clean up to double check things
  and help ensure anyone looking at this code
  can get enough of an idea of things from the README
  and code.
* also removing a catalyst specific line from the README

Change-Id: I648e668553970f2934d1608b8af89448990e3d3d
2016-02-19 14:51:09 +13:00

26 lines
920 B
Python

# Copyright (C) 2015 Catalyst IT Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
def management_command():
"""Entry-point for the 'stacktask' command-line admin utility."""
import os
import sys
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "stacktask.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)