2019-08-26 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in the 'pypad_live365.py' PyPAD script that caused
	an infinite loop.
This commit is contained in:
Fred Gleason 2019-08-27 17:59:27 -04:00
parent d3e3e708f1
commit b235a974dc

View File

@ -33,7 +33,7 @@ def eprint(*args,**kwargs):
def ProcessPad(update):
n=1
section='Station'+str(n)
while(True):
while(update.config().has_section(section)):
if update.shouldBeProcessed(section) and update.hasPadType(pypad.TYPE_NOW):
member=update.escape(update.config().get(section,'MemberName'),pypad.ESCAPE_URL)
password=update.escape(update.config().get(section,'Password'),pypad.ESCAPE_URL)