Fix long line.
authorJelmer Vernooij <jelmer@jelmer.uk>
Tue, 16 Oct 2018 22:31:59 +0000 (22:31 +0000)
committerJelmer Vernooij <jelmer@jelmer.uk>
Tue, 16 Oct 2018 22:31:59 +0000 (22:31 +0000)
dulwich/client.py

index 3d0bd0c868cc2b23aad26d94a297e3cf1e5d3885..c938107c3028b60120038b5594418db540b864bc 100644 (file)
@@ -829,7 +829,8 @@ class TraditionalGitClient(GitClient):
             elif pkt == b"ACK\n":
                 pass
             elif pkt.startswith(b"ERR "):
-                raise GitProtocolError(pkt[4:].rstrip(b"\n").decode('utf-8', 'replace'))
+                raise GitProtocolError(
+                        pkt[4:].rstrip(b"\n").decode('utf-8', 'replace'))
             else:
                 raise AssertionError("invalid response %r" % pkt)
             ret = proto.read_pkt_line()