Browse Source

Fixed dummy Cluster Client argument list

Mark Mine 23 years ago
parent
commit
3a1f42409d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/cluster/ClusterClient.py

+ 1 - 1
direct/src/cluster/ClusterClient.py

@@ -354,7 +354,7 @@ class DummyClusterClient(DirectObject.DirectObject):
     def __init__(self):
         pass
 
-    def __call__(self, commandString, fLocally = 1, serverNum = None):
+    def __call__(self, commandString, fLocally = 1, serverList = None):
         if fLocally:
             # Execute locally
             exec( commandString, __builtins__ )