equal
deleted
inserted
replaced
263 |
263 |
264 def parseerrordetail(inst): |
264 def parseerrordetail(inst): |
265 """Compose error message from specified ParseError object |
265 """Compose error message from specified ParseError object |
266 """ |
266 """ |
267 if len(inst.args) > 1: |
267 if len(inst.args) > 1: |
268 return _('at %s: %s') % (inst.args[1], inst.args[0]) |
268 return _('at %d: %s') % (inst.args[1], inst.args[0]) |
269 else: |
269 else: |
270 return inst.args[0] |
270 return inst.args[0] |
271 |
271 |
272 class alias(object): |
272 class alias(object): |
273 """Parsed result of alias""" |
273 """Parsed result of alias""" |