>            
>             
>       """Create the Second ListBox"""
>                   
>       self.lbRSSItems = Listbox(self, exportselection=0
>                                 ,command=self.reveal
>                                 , relief=SUNKEN)
>   
Because whitespace is important in python,
you can't arbitrarily put newlines into your text.
Your program is getting confused because it doesn't know what ', 
relief=SUNKEN)' means.
Try putting a '\' before your newlines.
Like:
x = \
'a'


HTH,
-Luke
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to