浏览代码

Fix assertion error syntax.

Jelmer Vernooij 10 年之前
父节点
当前提交
6057a636fe
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      dulwich/protocol.py

+ 1 - 1
dulwich/protocol.py

@@ -122,7 +122,7 @@ class Protocol(object):
             pkt_contents = read(size-4)
             if len(pkt_contents) + 4 != size:
                 raise AssertionError('Length of pkt read %04x does not match length prefix %04x.'
-                                     .format(len(pkt_contents) + 4, size))
+                                     % (len(pkt_contents) + 4, size))
             return pkt_contents
         except socket.error as e:
             raise GitProtocolError(e)