am using following code to check certain conditions
for myarg in myargs:
if myarg=='heading.png':
t = find(dirpath + '\\' + myarg)
t1= capture(t.getX() - 50, t.getY() + 50, t.getW(), t.getH())
click(t1)
else
print "else inside-----------"
myargs conatians heading.png,name.png etc
while executing the above code am gettign erros IndentationError: unindent does not match any outer indentation level
ifblock should be at the same indentation until theelseblock at which point the block after theelseshould be indented equally to theifblock:is requiered after each block init,elseincluded