diff --git a/direct/src/cluster/ClusterServer.py b/direct/src/cluster/ClusterServer.py index c4c82212c4..4fc9393cd4 100644 --- a/direct/src/cluster/ClusterServer.py +++ b/direct/src/cluster/ClusterServer.py @@ -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