OpenSlides/manage.py

19 lines
360 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Manage script for OpenSlides.
:copyright: 20112013 by OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
import sys
from openslides.__main__ import main
if __name__ == "__main__":
if len(sys.argv) == 1:
sys.argv.append('--help')
exit(main())