From eaa8cc5bad8b7e9922fa572457d31da02755476c Mon Sep 17 00:00:00 2001 From: Michael Ziegler Date: Thu, 11 Jun 2009 13:44:42 +0200 Subject: [PATCH] added check for dbus connection string --- pyweb/mumble/management.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyweb/mumble/management.py b/pyweb/mumble/management.py index 0ae11a6..6ba0a4b 100755 --- a/pyweb/mumble/management.py +++ b/pyweb/mumble/management.py @@ -90,7 +90,7 @@ def find_existing_instances( **kwargs ): print "Checking Murmur instance with id %d." % id; # first check that the server has not yet been inserted into the DB try: - instance = models.Mumble.objects.get( srvid=id ); + instance = models.Mumble.objects.get( dbus=dbusName, srvid=id ); except models.Mumble.DoesNotExist: conf = ctl.getAllConf(id);