Mercurial > python-hglib
diff hglib/client.py @ 181:cdb5a320d2bf
client: wrap long lines at 80 chars
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Wed, 19 Oct 2016 00:03:44 +0900 |
parents | ff6efc1ab9e4 |
children | 9062a6b935ad |
line wrap: on
line diff
--- a/hglib/client.py Fri Oct 28 11:33:20 2016 +0100 +++ b/hglib/client.py Wed Oct 19 00:03:44 2016 +0900 @@ -639,7 +639,8 @@ m = re.search(b(r'^committed changeset (\d+):([0-9a-f]+)'), out, re.MULTILINE) if not m: - raise ValueError('revision and node not found in hg output: %r' % out) + raise ValueError('revision and node not found in hg output: %r' + % out) rev, node = m.groups() return int(rev), node