>> I was having problems with my text editor. For some reason Python >> didn't like the way it handled tabs/spaces. I stopped using tabs and >> started using spaces, and that seemed to fix the problem.
Your solution of using spaces instead of tabs to indent worked perfectly!
The python interpreter will treat a single tab character the same as 8 space characters, so if you indent using 4 spaces then a tab is the same as two indents.
Regards Darryl
signature.asc
Description: OpenPGP digital signature

