瀏覽代碼

Re-adding HttpGitClient.__repr__().

Adam Bradley 7 年之前
父節點
當前提交
f1ff0902cf
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      dulwich/client.py

+ 4 - 0
dulwich/client.py

@@ -276,6 +276,10 @@ class FetchPackResult(object):
             return getattr(self.refs, name)
         return super(FetchPackResult, self).__getattribute__(name)
 
+    def __repr__(self):
+        return "%s(%r, %r, %r)" % (
+                self.__class__.__name__, self.refs, self.symrefs, self.agent)
+
 
 # TODO(durin42): this doesn't correctly degrade if the server doesn't
 # support some capabilities. This should work properly with servers