2012-04-15 16:04:08 +02:00
|
|
|
#!/usr/bin/env python
|
2012-04-25 22:29:19 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
Start script for OpenSlides.
|
|
|
|
|
|
|
|
:copyright: 2011, 2012 by OpenSlides team, see AUTHORS.
|
|
|
|
:license: GNU GPL, see LICENSE for more details.
|
|
|
|
"""
|
2012-04-15 16:04:08 +02:00
|
|
|
|
|
|
|
import openslides.main
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
openslides.main.main()
|