Mercurial > lcfOS
diff python/ppci/common.py @ 293:6aa721e7b10b
Try to improve build sequence
author | Windel Bouwman |
---|---|
date | Thu, 28 Nov 2013 20:39:37 +0100 |
parents | 534b94b40aa8 |
children | 2c9768114877 |
line wrap: on
line diff
--- a/python/ppci/common.py Wed Nov 27 08:06:42 2013 +0100 +++ b/python/ppci/common.py Thu Nov 28 20:39:37 2013 +0100 @@ -23,7 +23,7 @@ self.length = ln def __repr__(self): - return '{}, {}'.format(self.row, self.col) + return '{}, {}, {}'.format(self.filename, self.row, self.col) SourceRange = namedtuple('SourceRange', ['p1', 'p2'])