Explorar el Código

Fix long line.

Jelmer Vernooij hace 6 años
padre
commit
927e7599d4
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      dulwich/client.py

+ 2 - 1
dulwich/client.py

@@ -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()