summaryrefslogtreecommitdiff
path: root/gr-network/python/network/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'gr-network/python/network/__init__.py')
-rw-r--r--gr-network/python/network/__init__.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/gr-network/python/network/__init__.py b/gr-network/python/network/__init__.py
index f5844994bb..6a927c19fb 100644
--- a/gr-network/python/network/__init__.py
+++ b/gr-network/python/network/__init__.py
@@ -13,7 +13,14 @@ description here (python/__init__.py).
from __future__ import unicode_literals
# import swig generated symbols into the network namespace
-from .network_swig import *
+import os
+
+try:
+ from .network_python import *
+except ImportError:
+ dirname, filename = os.path.split(os.path.abspath(__file__))
+ __path__.append(os.path.join(dirname, "bindings"))
+ from .network_python import *
# import any pure python here
#