Kiln » Dependencies » Dulwich Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in master

Prevent errors about string formatting when tuples are passed.

Changeset c51c99834cc1

Parent ccf60d4442dd

by Jelmer Vernooij

Changes to one file · Browse files at c51c99834cc1 Showing diff from parent ccf60d4442dd Diff from another changeset...

 
623
624
625
626
 
627
628
629
 
623
624
625
 
626
627
628
629
@@ -623,7 +623,7 @@
  elif len(sha) == 20:   return sha_to_hex(sha)   else: - raise ValueError("Invalid sha %r" % sha) + raise ValueError("Invalid sha %r" % (sha,))     def contains_loose(self, sha):   """Check if a particular object is present by SHA1 and is loose."""