blob: 001512b8387ce5aefba4922a67fdbb801183f618 (
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 [['..', 'bin'], ['..', '..', '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)
|