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

Fix call.

Changeset 52553bc6b572

Parent bb394b5003cd

by Jelmer Vernooij

Changes to one file · Browse files at 52553bc6b572 Showing diff from parent bb394b5003cd Diff from another changeset...

Change 1 of 1 Show Entire File dulwich/​repo.py Stacked
 
50
51
52
53
 
54
55
56
 
50
51
52
 
53
54
55
56
@@ -50,7 +50,7 @@
    def __setitem__(self, name, ref):   self.tags[name] = ref - f = open(os.path.join(self.tagdir(), name), 'wb') + f = open(os.path.join(self.tagdir, name), 'wb')   try:   f.write("%s\n" % ref)   finally: