[Sikuli-driver] [Question #238023]: append feature- html

2013-10-24 Thread sanjana
New question #238023 on Sikuli: https://answers.launchpad.net/sikuli/+question/238023 Hi, I created two file callinfun.sikuli and calledfun.sikuli Contents of "callingfun.sikuli" is: myScriptPath = "C:\\calledfun.sikul" if not myScriptPath in sys.path: sys.path.append(myScriptPath) test=open('C:\

Re: [Sikuli-driver] [Question #238023]: append feature- html

2013-10-25 Thread RaiMan
Question #238023 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/238023 Status: Open => Answered RaiMan proposed the following answer: --1. depending on Sikuli version: do not have .sikuli at the drive's top level, always use at least one folder level --2. do not put other

Re: [Sikuli-driver] [Question #238023]: append feature- html

2013-10-25 Thread RaiMan
Question #238023 on Sikuli changed: https://answers.launchpad.net/sikuli/+question/238023 RaiMan proposed the following answer: uuups, missed colon and indent def append(fname, text): f = open(fame, "a") f.writelines(text) f.close() -- You received this question notification because