I want to automate perforce. So I am using the PyPerforce given on the http://pyperforce.sour ceforge.net web site. The problem I am facing is that it is not in the python script, results.py, it does not seem to find an import it is doing.
In results.py it is doing an import protocols but it can't be find anywhere. The only protocols.py or a folder called protocols is from a package called Twisted. I even tried changing the import in results.py for the following
but now in the results.py we are looking for protocol.interf ace which cannot be found.
In conclusion, it seems that protocols is missing from the PyPerforce package.
Could someone help me.
tkx
In results.py it is doing an import protocols but it can't be find anywhere. The only protocols.py or a folder called protocols is from a package called Twisted. I even tried changing the import in results.py for the following
Code:
from twisted import protocols
In conclusion, it seems that protocols is missing from the PyPerforce package.
Could someone help me.
tkx
Comment