Parcourir la source

sha_queue now holds tuple(type, sha)

John Carr il y a 16 ans
Parent
commit
49a7aedf91
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      bin/dul-daemon

+ 1 - 1
bin/dul-daemon

@@ -90,7 +90,7 @@ class GitBackend(Backend):
 
         commits_to_send = want[:]
         for sha in commits_to_send:
-            sha_queue.append(sha)
+            sha_queue.append((1,sha))
 
             c = self.repo.commit(sha)
             for p in c.parents():