rev 7333 - kde-extras/kdebluetooth/trunk/debian

Michael Meskes meskes at alioth.debian.org
Thu Oct 4 08:03:45 UTC 2007


Author: meskes
Date: 2007-10-04 08:03:45 +0000 (Thu, 04 Oct 2007)
New Revision: 7333

Modified:
   kde-extras/kdebluetooth/trunk/debian/changelog
   kde-extras/kdebluetooth/trunk/debian/kblueplugd
Log:
Some small fixes in kblueplugd



Modified: kde-extras/kdebluetooth/trunk/debian/changelog
===================================================================
--- kde-extras/kdebluetooth/trunk/debian/changelog	2007-10-04 06:33:57 UTC (rev 7332)
+++ kde-extras/kdebluetooth/trunk/debian/changelog	2007-10-04 08:03:45 UTC (rev 7333)
@@ -1,3 +1,9 @@
+kdebluetooth (1.0~beta8-3) UNRELEASED; urgency=low
+
+  * Fixed some small python problems in kblueplugd.
+
+ -- Michael Meskes <meskes at debian.org>  Thu, 04 Oct 2007 10:02:42 +0200
+
 kdebluetooth (1.0~beta8-2) unstable; urgency=low
 
   * Added "Replaces: qobex" to likbluetooth0 and libkbluetooth-dev, closes: #444884

Modified: kde-extras/kdebluetooth/trunk/debian/kblueplugd
===================================================================
--- kde-extras/kdebluetooth/trunk/debian/kblueplugd	2007-10-04 06:33:57 UTC (rev 7332)
+++ kde-extras/kdebluetooth/trunk/debian/kblueplugd	2007-10-04 08:03:45 UTC (rev 7333)
@@ -21,7 +21,8 @@
 
 app = QtGui.QApplication(sys.argv)
 if app.isSessionRestored():
-	quit()
+	sys.exit(1)
+	
 dbus.mainloop.qt.DBusQtMainLoop(set_as_default=True)
 bus = dbus.SystemBus()
 
@@ -29,7 +30,7 @@
         manager = dbus.Interface(bus.get_object('org.bluez', '/org/bluez'), 'org.bluez.Manager')
 except:
         print "Unable to connect to bluez."
-        exit
+        sys.exit(1)
 
 if len(manager.ListAdapters()):
         print "# of devices at startup:", len(manager.ListAdapters())




More information about the pkg-kde-commits mailing list