Michel Pelletier wrote:
> 
> What's odd is that you said it's an indentation error.  When I try this
> script with python 2.1:
> 
>   print 'hi'
>   for i in range(10):
>   print 'foo'
..what I had was the equivalent of :
   print 'hi'
   for i in range(10):
     print 'foo'
...and I didnt' get an IndentationError...
cheers,
Chris