From 02d302ce90b136991de60015285ff7a39ff54375 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Mon, 30 Apr 2007 11:34:33 +0100 Subject: [PATCH] dbus/bus.py: get BUS_DAEMON_NAME etc. from _dbus_bindings --- dbus/bus.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/dbus/bus.py b/dbus/bus.py index 053666d..070409e 100644 --- a/dbus/bus.py +++ b/dbus/bus.py @@ -18,13 +18,10 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -BUS_DAEMON_NAME = 'org.freedesktop.DBus' -BUS_DAEMON_PATH = '/org/freedesktop/DBus' -BUS_DAEMON_IFACE = BUS_DAEMON_NAME - from _dbus_bindings import validate_interface_name, validate_member_name,\ validate_bus_name, validate_object_path,\ - validate_error_name + validate_error_name,\ + BUS_DAEMON_NAME, BUS_DAEMON_PATH, BUS_DAEMON_IFACE class _BusDaemonMixin(object): -- 2.11.4.GIT