From b45446550083063624d9fb3a06e8aa1cc858fef0 Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Sun, 4 Oct 2020 22:29:26 +0200 Subject: Rename class RWAService to RWASupportSessionService. --- docs/ref/01_dbus.rst | 2 +- service.py | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/ref/01_dbus.rst b/docs/ref/01_dbus.rst index 4b69353..f00cb5f 100644 --- a/docs/ref/01_dbus.rst +++ b/docs/ref/01_dbus.rst @@ -1,5 +1,5 @@ D-Bus service ============= -.. autoclass:: service.RWAService +.. autoclass:: service.RWASupportSessionService :members: \ No newline at end of file diff --git a/service.py b/service.py index 7c056fa..807f53d 100755 --- a/service.py +++ b/service.py @@ -47,8 +47,8 @@ from trigger import TriggerServerThread ALLOW_ONLY_ONE_SESSION = True -class RWAService(dbus.service.Object): - """D-Bus Session Service for RWA. +class RWASupportSessionService(dbus.service.Object): + """D-Bus Session Service for RWA.Support. D-Bus namespace: ``org.ArcticaProject.RWASupportSessionService`` @@ -323,7 +323,7 @@ if __name__ == "__main__": dbus.mainloop.glib.DBusGMainLoop(set_as_default=True) loop = GLib.MainLoop() - object = RWAService(loop, mockup_mode, one_time) + object = RWASupportSessionService(loop, mockup_mode, one_time) def signal_handler(sig, frame): logging.info("Service was terminated.") -- cgit v1.2.3