Przeglądaj źródła

Making set_description method compatible with python 2.4 by not using 'with'

Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
Víðir Valberg Guðmundsson 11 lat temu
rodzic
commit
56cb1ee121
1 zmienionych plików z 4 dodań i 1 usunięć
  1. 4 1
      dulwich/repo.py

+ 4 - 1
dulwich/repo.py

@@ -1488,8 +1488,11 @@ class Repo(BaseRepo):
 
         path = os.path.join(self._controldir, 'description')
         try:
-            with open(path, 'w') as f:
+            f = open(path, 'w')
+            try:
                 f.write(description)
+            finally:
+                f.close()
         except (IOError, OSError), e:
             if e.errno != errno.ENOENT:
                 raise