Browse Source

changed field description and default of the "dbus" field to use ICE as default

Natenom/support-murmur-13-1446181288462
Michael Ziegler 16 years ago
parent
commit
8b84fe9dba
  1. 2
      pyweb/mumble/models.py

2
pyweb/mumble/models.py

@ -30,7 +30,7 @@ from mctl import *
class Mumble( models.Model ):
name = models.CharField( 'Server Name', max_length = 200 );
dbus = models.CharField( 'DBus base', max_length = 200, default = 'net.sourceforge.mumble.murmur' );
dbus = models.CharField( 'DBus or ICE base', max_length = 200, default = 'Meta:tcp -h 127.0.0.1 -p 6502' );
srvid = models.IntegerField( 'Server ID', editable = False );
addr = models.CharField( 'Server Address', max_length = 200 );
port = models.IntegerField( 'Server Port', blank = True, null = True );

Loading…
Cancel
Save