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>
This commit is contained in:
parent
ed29c0daae
commit
f477e86a96
|
@ -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'
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue