bluetooth-audio: fix log errors

This commit is contained in:
mglae 2017-07-06 23:36:20 +02:00 committed by chewitt
parent f37a6c50bd
commit 894c10be26
3 changed files with 6 additions and 1 deletions

View File

@ -1,2 +1,5 @@
101
- Fix log errors
100 100
- Initial release - Initial release

View File

@ -18,7 +18,7 @@
PKG_NAME="bluetooth-audio" PKG_NAME="bluetooth-audio"
PKG_VERSION="0" PKG_VERSION="0"
PKG_REV="100" PKG_REV="101"
PKG_ARCH="any" PKG_ARCH="any"
PKG_LICENSE="GPL" PKG_LICENSE="GPL"
PKG_SITE="" PKG_SITE=""

View File

@ -17,6 +17,7 @@
################################################################################ ################################################################################
import dbus import dbus
import dbus.mainloop.glib
import gobject import gobject
import json import json
import threading import threading
@ -107,6 +108,7 @@ class BluetoothAudioClient(object):
def _setup_bus(self): def _setup_bus(self):
dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
self._bus = dbus.SystemBus() self._bus = dbus.SystemBus()
def _setup_signals(self): def _setup_signals(self):