Browse Source

fix non-existing variable name. see #166

Natenom/support-murmur-13-1446181288462
Michael Ziegler 13 years ago
parent
commit
59d24f19ca
  1. 3
      pyweb/mumble/models.py

3
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 )

Loading…
Cancel
Save