# HG changeset patch # User greg # Date 1179134672 -7200 # Node ID 48b59c852636ca74b423233dee00a4fe901614ac # Parent 1587a69b6ed9b98c3f2b467da61fa2a8f4d15e6f fix : Traceback (most recent call last): File "../../objdictgen/objdictgen.py", line 69, in ? result = manager.ExportCurrentToFile(fileOut) AttributeError: NodeManager instance has no attribute 'ExportCurrentToFile' diff -r 1587a69b6ed9 -r 48b59c852636 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)