Browse Source

Re-adding HttpGitClient.__repr__().

Adam Bradley 7 years ago
parent
commit
f1ff0902cf
1 changed files with 4 additions and 0 deletions
  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