OpenSlides/manage.py

19 lines
360 B
Python
Raw Normal View History

2011-07-31 10:46:29 +02:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Manage script for OpenSlides.
2011-07-31 10:46:29 +02:00
:copyright: 20112013 by OpenSlides team, see AUTHORS.
2011-07-31 10:46:29 +02:00
:license: GNU GPL, see LICENSE for more details.
"""
import sys
from openslides.__main__ import main
2012-11-01 10:56:38 +01:00
2011-07-31 10:46:29 +02:00
if __name__ == "__main__":
if len(sys.argv) == 1:
sys.argv.append('--help')
exit(main())