15 lines
330 B
Python
Executable file
15 lines
330 B
Python
Executable file
#!/usr/bin/python3
|
|
|
|
import os
|
|
import sys
|
|
|
|
SCRIPT_PATH = os.path.realpath(__file__)
|
|
SCRIPT_DIR = os.path.dirname(SCRIPT_PATH)
|
|
REPO_ROOT = os.path.dirname(SCRIPT_DIR)
|
|
if REPO_ROOT not in sys.path:
|
|
sys.path.insert(0, REPO_ROOT)
|
|
|
|
from agenda.add_new_conference import main
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|