fix :
authorgreg
Mon, 14 May 2007 11:24:32 +0200
changeset 199 48b59c852636
parent 198 1587a69b6ed9
child 200 930be51ddc24
fix :

Traceback (most recent call last):
File "../../objdictgen/objdictgen.py", line 69, in ?
result = manager.ExportCurrentToFile(fileOut)
AttributeError: NodeManager instance has no attribute 'ExportCurrentToFile'
objdictgen/objdictgen.py
--- a/objdictgen/objdictgen.py	Mon May 14 09:05:18 2007 +0200
+++ b/objdictgen/objdictgen.py	Mon May 14 11:24:32 2007 +0200
@@ -66,7 +66,7 @@
             print "%s is not a valid file!"%fileIn
             sys.exit(-1)
         print "Writing output file"
-        result = manager.ExportCurrentToFile(fileOut)
+        result = manager.ExportCurrentToCFile(fileOut)
         if type(result) == UnicodeType:
             print result
             sys.exit(-1)