浏览代码

Cope with the fact that Index.__iter__ now returns paths rather than 12-tuples.

Jelmer Vernooij 16 年之前
父节点
当前提交
5d2d117ac6
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      bin/dulwich

+ 1 - 1
bin/dulwich

@@ -118,7 +118,7 @@ def cmd_dump_index(args):
 	idx = Index(filename)
 
 	for o in idx:
-		print o[0]
+		print o, idx[o]
 
 
 def cmd_init(args):