0752d476e4
* Remove headers * Changed lineendings to linux style in AUTHORS and CHANGELOG
13 lines
203 B
Python
13 lines
203 B
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import sys
|
|
|
|
from openslides.__main__ import main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
if len(sys.argv) == 1:
|
|
sys.argv.append('--help')
|
|
exit(main())
|