Explorar o código

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

Jelmer Vernooij %!s(int64=16) %!d(string=hai) anos
pai
achega
5d2d117ac6
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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):