瀏覽代碼

dulwich.client: fix fetch if no progress function is specified

Change-Id: I0627b9bea8d7259984fb6587a877bb027dde7367
Augie Fackler 15 年之前
父節點
當前提交
c873739c92
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      dulwich/client.py

+ 2 - 1
dulwich/client.py

@@ -240,7 +240,8 @@ class GitClient(object):
             if channel == 1:
                 pack_data(pkt)
             elif channel == 2:
-                progress(pkt)
+                if progress is not None:
+                    progress(pkt)
             else:
                 raise AssertionError("Invalid sideband channel %d" % channel)
         return refs