I have a rather large class I want to convet to python just to see if
it's feasable.
The GUI does not even come up so I tried the command line version and
I get the error posted below.
Is there any way to tell which command it's having a problem with so I
can comment that out and try it with the rest?
Traceback (most recent call last):
File "converter.py", line 707, in ?
main()
File "converter.py", line 656, in main
conv.doConversion(project_file)
File "converter.py", line 116, in doConversion
class_mod.doParse(self.project_structure)
File "converter.py", line 490, in doParse
self.parseCode(project)
File "converter.py", line 174, in parseCode
self.code_structure = vbparser.parseVB(self.code_block, container=container)
File "D:\Python24\Lib\site-packages\vb2py\vbparser.py", line 108, in parseVB
nodes = buildParseTree(vbtext, starttoken, verbose, returnpartial)
File "D:\Python24\Lib\site-packages\vb2py\vbparser.py", line 80, in
buildParseTree
success, tree, next = TextTools.tag(txt, parser)
TypeError: Tag Table entry 2: unknown command
|