diff options
Diffstat (limited to 'python')
-rw-r--r-- | python/gras/__init__.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/python/gras/__init__.py b/python/gras/__init__.py index 5d81709..1871a27 100644 --- a/python/gras/__init__.py +++ b/python/gras/__init__.py @@ -1,5 +1,10 @@ # Copyright (C) by Josh Blum. See LICENSE.txt for licensing information. +#add the current path of this module for installed client apps swig imports +import os +import sys +sys.path.append(os.path.dirname(__file__)) + from PMC import * from GRAS_SBuffer import SBufferConfig, SBuffer from GRAS_Tags import Tag, StreamTag, PacketMsg |