From 4c923fbd9e2d14e8544a48f8f0b4fe9aba45d6d1 Mon Sep 17 00:00:00 2001 From: Darren Ranalli Date: Thu, 4 Dec 2003 22:44:44 +0000 Subject: [PATCH] added explicit 'Done.' printouts --- direct/src/level/SpecUtil.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/direct/src/level/SpecUtil.py b/direct/src/level/SpecUtil.py index fd0e119a00..425f914184 100755 --- a/direct/src/level/SpecUtil.py +++ b/direct/src/level/SpecUtil.py @@ -14,6 +14,7 @@ def makeNewSpec(filename, modelPath, entTypeModule=EntityTypes): spec = LevelSpec.LevelSpec() privUpdateSpec(spec, modelPath, entTypeModule) spec.saveToDisk(filename, makeBackup=0) + print 'Done.' """ FOR SAME LEVEL MODEL PATH: @@ -36,6 +37,7 @@ def updateSpec(specModule, entTypeModule=EntityTypes, modelPath=None): spec = LevelSpec.LevelSpec(specModule) privUpdateSpec(spec, modelPath, entTypeModule) spec.saveToDisk() + print 'Done.' def privUpdateSpec(spec, modelPath, entTypeModule): """internal: take a spec and update it to match its level model"""