I'm a Python beginner and now it's freakin me out:
L = []
file = urllib.urlopen("http://someurl.com/someText.txt")
line = file.readline()
while line != "" :
L.append(line)
line = file.readline()
appuifw.selection_list(choices=L)
and I get this error:
line = file.readline()
^
SyntaxError: invalid syntax
Does anyone know what the issue is?