summaryrefslogtreecommitdiffstats
path: root/test/python/test-client.py
diff options
context:
space:
mode:
authorJohn (J5) Palmieri <johnp@redhat.com>2005-08-26 04:23:33 +0000
committerJohn (J5) Palmieri <johnp@redhat.com>2005-08-26 04:23:33 +0000
commit18170dd986e4e4efe440c9dfa6f47ba87604b7ec (patch)
treecc01cc087df3a59f0d54869881dc9084eedb4a9e /test/python/test-client.py
parent64e468d21ce306831ff8ab76f6704b1ffdafbea2 (diff)
* s/Message(_create=0)/EmptyMessage everywhere else
* test/python/test-{server|client}.py: add the python/.libs directory to the lookup path so dbus_bindings and dbus_glib_bindings don't get picked up from the system
Diffstat (limited to 'test/python/test-client.py')
-rwxr-xr-xtest/python/test-client.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/python/test-client.py b/test/python/test-client.py
index f9f692c2..51d655db 100755
--- a/test/python/test-client.py
+++ b/test/python/test-client.py
@@ -6,8 +6,10 @@ builddir = os.environ["DBUS_TOP_BUILDDIR"]
pydir = builddir + "/python"
sys.path.insert(0, pydir)
+sys.path.insert(0, pydir + "/.libs")
import dbus
+import dbus_bindings
if not dbus.__file__.startswith(pydir):
raise Exception("DBus modules are not being picked up from the package")