Przeglądaj źródła

sha_queue now holds tuple(type, sha)

John Carr 16 lat temu
rodzic
commit
49a7aedf91
1 zmienionych plików z 1 dodań i 1 usunięć
  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():