gfplus.py syntax errors
Brought to you by:
aaron_watters,
richard
While attempting to use gfplus.py via client/server
mode, I uncovered what I believe to be several syntax
errors. I have managed to correct the errors in my
own local copy and get the program running. The
errors are as follows:
gfplus.py, line 70:
return '\n'.join(rows, "\n")
should be:
return string.join(rows, "\n")
gfplus.py, line 78 (inside the __init__() method):
cmd.Cmd.__init__(self) #this line is ommited.
gfplus.py, line 137:
from gadfly.gfclient import gfclient
should be:
from gadfly.client import
I may be contacted at:
waldbie@attglobal.net