← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #676840]: Inconsistent behaviour of SIkuli code run

 

Question #676840 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/676840

    Status: Needs information => Answered

RaiMan proposed the following answer:
A general comment (I think I already mentioned before):
print is a statement and not a function, so the list of items to be printed have to be given WITHOUT brackets:

so not
print ("Starting handler:", i) #prints ('Starting Handler', 1)

but
print "Starting handler:", i #prints Starting Handler: 1 
... as intended

-- 
You received this question notification because your team Sikuli Drivers
is an answer contact for Sikuli.