gui: move the dbus client handler bits to the tuhi module

This is used by the GUI and by kete and it's just an abstraction of the
handling anyway with little actual logic. Let's make this sharable.

Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
pull/205/head
Peter Hutterer 2019-08-28 09:15:50 +10:00
parent c0628f1f19
commit 82c666033f
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@ import os
import logging
import re
logger = logging.getLogger('tuhi.gui.dbus')
logger = logging.getLogger('tuhi.dbusclient')
TUHI_DBUS_NAME = 'org.freedesktop.tuhi1'
ORG_FREEDESKTOP_TUHI1_MANAGER = 'org.freedesktop.tuhi1.Manager'

View File

@ -15,8 +15,8 @@ from gettext import gettext as _
from gi.repository import Gtk, Gio, GLib, GObject
from .drawingperspective import DrawingPerspective
from .tuhi import TuhiKeteManager
from .config import Config
from tuhi.dbusclient import TuhiKeteManager
import logging
import gi