[Zope-dev] PythonScript errormessages in 2.4

Chris Withers chrisw@nipltd.com
Thu, 26 Jul 2001 10:10:08 +0100


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