summaryrefslogtreecommitdiff
path: root/python/helpers/syspath.py
blob: ba5d8e3fb1cb176cd896b7e03e985d188e52cf7c (plain)
1
2
3
4
import sys
import os.path
for x in sys.path:
    if x != os.path.dirname(sys.argv [0]) and x != '.': sys.stdout.write(x+chr(10))