Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/dbus_support.py')
-rw-r--r--src/common/dbus_support.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/dbus_support.py b/src/common/dbus_support.py
index 77f965e1e..4ceacde39 100644
--- a/src/common/dbus_support.py
+++ b/src/common/dbus_support.py
@@ -51,7 +51,7 @@ class SystemBus:
'''A Singleton for the DBus SystemBus'''
def __init__(self):
self.system_bus = None
-
+
def SystemBus(self):
if not supported:
raise exceptions.DbusNotSupported
@@ -84,7 +84,7 @@ class SessionBus:
'''A Singleton for the D-Bus SessionBus'''
def __init__(self):
self.session_bus = None
-
+
def SessionBus(self):
if not supported:
raise exceptions.DbusNotSupported
@@ -112,7 +112,7 @@ class SessionBus:
session_bus = SessionBus()
def get_interface(interface, path):
- '''Returns an interface on the current SessionBus. If the interface isn\'t
+ '''Returns an interface on the current SessionBus. If the interface isn\'t
running, it tries to start it first.'''
if not supported:
return None
@@ -148,7 +148,7 @@ def get_notifications_interface():
if supported:
class MissingArgument(dbus.DBusException):
_dbus_error_name = _GAJIM_ERROR_IFACE + '.MissingArgument'
-
+
class InvalidArgument(dbus.DBusException):
'''Raised when one of the provided arguments is invalid.'''
_dbus_error_name = _GAJIM_ERROR_IFACE + '.InvalidArgument'