<br><br><div class="gmail_quote"><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>
<br>
<br>
<br>
error message:<br>
Traceback (most recent call last):<br>
  File "<string>", line 1, in <string><br>
IndentationError: expected an indented block (<string>, line 39)<br>
<br>
code:<br>
<a href="http://pastebin.com/f2f971f91" target="_blank">http://pastebin.com/f2f971f91</a><br>
<font color="#888888"></font></blockquote><div><br>Hi, <br><br>It looks like you have commented out a line on line 30, you need to place something<br>in here, as python is expecting an indented level after your 'if'. (how about a pass statement or a print saying some placeholder help details.)<br>
<br>On a side note, I've only had a quick skim, you shouldn't compare o to an empty string "" using the 'is', is tests identity not equality. So what you are saying is<br>is o the exact same empty string that I am creating "" (obviously it never will be, because you just created it then with "") . Use the equality operator == instead. <br>
or in your case !=. <br><br>Cheers,<br></div></div><br>