Put try around handle command string
This commit is contained in:
parent
c27ff6e435
commit
4feedb0592
|
|
@ -201,5 +201,8 @@ class ClusterServer(DirectObject.DirectObject):
|
|||
def handleCommandString(self, dgi):
|
||||
""" Handle arbitrary command string from client """
|
||||
command = self.msgHandler.parseCommandStringDatagram(dgi)
|
||||
exec( command, globals() )
|
||||
try:
|
||||
exec( command, globals() )
|
||||
except:
|
||||
pass
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue