Browse Source

sha_queue now holds tuple(type, sha)

John Carr 16 years ago
parent
commit
49a7aedf91
1 changed files with 1 additions and 1 deletions
  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():