Re: [BangPypers] Next IRC meeting

2009-03-11 Thread Roshan Mathews
On Wed, Mar 11, 2009 at 11:17 AM, Noufal Ibrahim nou...@gmail.com wrote: So, is Thursday night 9:00 pm fine with everyone? Fine with me. ~Roshan ___ BangPypers mailing list BangPypers@python.org http://mail.python.org/mailman/listinfo/bangpypers

Re: [BangPypers] IndentationError: expected an indented block

2009-03-11 Thread Pradeep Gowda
(resending reply to the list.. ) Python uses indentation for blocks your code has uneven indentation(1 space?) and no indentation in some places. You have to indent code correctly. Use FOUR spaces for indentation. eg: if len(args) == 0: print Fatal: no indication type provided. sys.exit(1)

Re: [BangPypers] IndentationError: expected an indented block

2009-03-11 Thread Parthan SR
Sandeep HS wrote: �Every time i execute that python program , I am getting error as �File ind.py, line 280 �dom = parseString(xmldata) Because the above said statement in line number 280 falls within a function block and hence need to be indented. Can you please set your editor to indent by