summaryrefslogtreecommitdiffstats
path: root/client/ivamCore.py
blob: 972c15693215ca9591fd8e6a88a262b4125c83b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

import sys, os

import ivamPipeConnector

DEBUG = False

def newConnector(p):

    if os.getenv("SHBUF") is None:
        return ivamPipeConnector.PipeConnector(p)
    else:
        return None
#        return ShbufConnector(c)

def log(s):
    sys.stderr.write("%s\n" % s)