Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/shellservice.py
diff options
context:
space:
mode:
authorSimon Schampijer <simon@schampijer.de>2008-04-26 13:33:30 (GMT)
committer Simon Schampijer <simon@schampijer.de>2008-04-26 13:33:30 (GMT)
commit4609b417072ac652bdafa4a45b3c52cbd0700b00 (patch)
tree5bb7ce48d451e7dfd92b1341539196b24830b7c9 /src/shellservice.py
parentc8771683677ab19406d266d62bcb36d8de4a1fa1 (diff)
pylint src/*.py
Diffstat (limited to 'src/shellservice.py')
-rw-r--r--src/shellservice.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/shellservice.py b/src/shellservice.py
index add49d8..3d90779 100644
--- a/src/shellservice.py
+++ b/src/shellservice.py
@@ -111,9 +111,9 @@ class ShellService(dbus.service.Object):
"""Lazily initializes an interface to the Rainbow security daemon."""
if self._rainbow is None:
system_bus = dbus.SystemBus()
- object = system_bus.get_object(_DBUS_RAINBOW_IFACE, '/',
- follow_name_owner_changes=True)
- self._rainbow = dbus.Interface(object,
+ obj = system_bus.get_object(_DBUS_RAINBOW_IFACE, '/',
+ follow_name_owner_changes=True)
+ self._rainbow = dbus.Interface(obj,
dbus_interface=_DBUS_RAINBOW_IFACE)
return self._rainbow