blob: 158be7075e890b2a510d6042a0630bd01b8fe99d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# hack to setup rhizi path - needs a proper install
import sys
import os
# to work both from source dir and from deployment dir
path = None
for postfix in [['..'], ['..', '..', 'server']]:
candidate = os.path.join(*([os.path.dirname(__file__)] + postfix))
if os.path.exists(candidate):
path = candidate
break
if None is path:
print("must be run from one or two directories above server")
raise SystemExit
sys.path.append(path)
|