From 59d24f19cab790b67825ed02149b86c7d15f66a2 Mon Sep 17 00:00:00 2001 From: Michael Ziegler Date: Sun, 11 Sep 2011 20:23:32 +0200 Subject: [PATCH] fix non-existing variable name. see #166 --- pyweb/mumble/models.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyweb/mumble/models.py b/pyweb/mumble/models.py index a518ba7..d64247d 100644 --- a/pyweb/mumble/models.py +++ b/pyweb/mumble/models.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # kate: space-indent on; indent-width 4; replace-tabs on; """ @@ -186,7 +185,7 @@ class MumbleServer( models.Model ): instance = Mumble.objects.get( server=self, srvid=id ) except Mumble.DoesNotExist: if verbosity: - print "Found new Murmur instance %d on bus '%s'... " % ( id, dbusName ) + print "Found new Murmur instance %d on bus '%s'... " % ( id, self.dbus ) # now create a model for the record set (configureFromMurmur will save() it). instance = Mumble( server=self, srvid=id )