32137b6523
python3.3 and python3.4 are supported
12 lines
179 B
Python
Executable File
12 lines
179 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import sys
|
|
|
|
from openslides.__main__ import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
if len(sys.argv) == 1:
|
|
sys.argv.append('--help')
|
|
exit(main())
|