Graham Leggett wrote: > Hi all, > > After doing an svn update on my gump directory, gump now bombs out with an > "indentation error" like so: > > Execute : /udd001/hoops/usr/bin/python2.3 bin/integrate.py -w > /udd001/hoops/gump/metadata/fodev01.xml -d --official all >out.txt 2>&1 > Traceback (most recent call last): > File "bin/integrate.py", line 40, in ? > from gump.core.runner.runner import getRunner > File "/udd001/hoops/gump/python/gump/core/runner/runner.py", line 22, in ? > from gump.core.build.builder import * > File "/udd001/hoops/gump/python/gump/core/build/builder.py", line 51, in ? > from gump.core.build.maven import MavenBuilder > File "/udd001/hoops/gump/python/gump/core/build/maven.py", line 191 > except Exception, details: > ^ > IndentationError: unindent does not match any outer indentation level > Process Exit Code : 1 > -- > Gump Version: 2.0.2-alpha-0003 > > Anyone know what this error means?
Precisely what it says. In python indentation is important. Someone committed a line that has a " " too much or a " " too little, so now python complains and exits. I'll go and fix it. - Leo --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
