Jelmer Vernooij %!s(int64=16) %!d(string=hai) anos
pai
achega
52553bc6b5
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      dulwich/repo.py

+ 1 - 1
dulwich/repo.py

@@ -50,7 +50,7 @@ class Tags(object):
     
     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: