소스 검색

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):