# HG changeset patch # User Yuya Nishihara # Date 1476803024 -32400 # Node ID cdb5a320d2bf815800f2f214b336c046cb4cdd8d # Parent ff6efc1ab9e4ce6ecfa93a8a0d9f94ff287066ba client: wrap long lines at 80 chars diff -r ff6efc1ab9e4 -r cdb5a320d2bf hglib/client.py --- 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