Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/olpcgames/dbusproxy.py
diff options
context:
space:
mode:
Diffstat (limited to 'olpcgames/dbusproxy.py')
-rw-r--r--[-rwxr-xr-x]olpcgames/dbusproxy.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/olpcgames/dbusproxy.py b/olpcgames/dbusproxy.py
index a103e28..5e0c757 100755..100644
--- a/olpcgames/dbusproxy.py
+++ b/olpcgames/dbusproxy.py
@@ -1,5 +1,5 @@
"""Spike test for a safer networking system for DBUS-based objects"""
-from olpcgames import eventwrap, util
+from olpcgames import util
from dbus import proxies
import logging
log = logging.getLogger( 'dbus' )
@@ -26,7 +26,6 @@ class DBUSProxy( object ):
self.__path = path
def __getattr__( self, key ):
"""Retrieve attribute of given key"""
- from dbus import proxies
return wrap( getattr( self.__proxy, key ) )
def add_signal_receiver( self, callback, eventName, interface, path=None, sender_keyword='sender'):
"""Add a new signal handler (which will be called many times) for given signal