Improve reporting on bad indices.
This commit is contained in:
parent
493ad2c306
commit
7a64df78e3
1 changed files with 2 additions and 1 deletions
|
@ -191,6 +191,7 @@ class PropsHandler(handler.ContentHandler):
|
|||
try:
|
||||
index = int(attrs['n'])
|
||||
except:
|
||||
print "Invalid index at line:", self._locator.getLineNumber(), "of", self._path
|
||||
raise IndexError("Invalid index at line:", self._locator.getLineNumber(), "of", self._path)
|
||||
|
||||
currentState.recordExplicitIndex(name, index)
|
||||
|
|
Loading…
Reference in a new issue