Browse Source

fix syntax error for python2.4 (2.5 is fine)

Natenom/support-murmur-13-1446181288462
Michael Ziegler 16 years ago
parent
commit
28cd9ae8cf
  1. 5
      pyweb/mumble/mctl.py

5
pyweb/mumble/mctl.py

@ -17,7 +17,7 @@
import re import re
class MumbleCtlBase ():
class MumbleCtlBase (object):
cache = {}; cache = {};
''' abstract Ctrol Object ''' ''' abstract Ctrol Object '''
@ -64,6 +64,9 @@ class MumbleCtlBase ():
def registerPlayer(self, srvid, name, email, password): def registerPlayer(self, srvid, name, email, password):
raise NotImplementedError( "mctl::registerPlayer" ); raise NotImplementedError( "mctl::registerPlayer" );
def getRegistration(self, srvid, mumbleid):
raise NotImplementedError( "mctl::setRegistration" );
def setRegistration(self, srvid, mumbleid, name, email, password): def setRegistration(self, srvid, mumbleid, name, email, password):
raise NotImplementedError( "mctl::setRegistration" ); raise NotImplementedError( "mctl::setRegistration" );

Loading…
Cancel
Save