Browse Source

Split AvatarDNA into ToonDNA, SuitDNA, and CharDNA.

Mike Goslin 21 years ago
parent
commit
a4a9c9e151
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/distributed/ClientDistClass.py

+ 1 - 1
direct/src/distributed/ClientDistClass.py

@@ -26,7 +26,7 @@ class ClientDistClass:
 
         # Import the class, and store the constructor
         try:
-            exec("import " + self.name, moduleGlobals, moduleLocals)
+             exec("import " + self.name, moduleGlobals, moduleLocals)
         except ImportError, e:
             self.notify.warning("Unable to import %s.py: %s" % (self.name, e))
             self.constructor = None