OpenSprinkler › Forums › Hardware Questions › OpenSprinkler Pi (OSPi) › Unable to Change Password on Interval Program › Re: Re: Unable to Change Password on Interval Program
June 10, 2013 at 3:28 pm
#24472
Dan in CA
Participant
Hi kenbob,
I see the problem.
If you are into some Python hacking, change line 449 from this:
if qdict !=” and qdict == qdict: save(‘pwd’, base64.b64encode(qdict))
to this:
if qdict !=” and qdict == qdict: sd = base64.b64encode(qdict)
Just the part after the colon has changed. The program no longer uses the pwd.txt file.
I will be submitting an updated version of the program in the next day or so. The updated version will also include a logging capability.
Dan