# HG changeset patch
# User Yuya Nishihara <y...@tcha.org>
# Date 1476803024 -32400
#      Wed Oct 19 00:03:44 2016 +0900
# Node ID 1ec4c46d309dcaef7a9bab6415cacbc5caf72dfe
# Parent  6f15cb7cc9cb4427f35c60080f85dbf4ca5abd10
client: wrap long lines at 80 chars

diff --git a/hglib/client.py b/hglib/client.py
--- a/hglib/client.py
+++ b/hglib/client.py
@@ -571,7 +571,8 @@ class hgclient(object):
         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
 
_______________________________________________
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel

Reply via email to