Procházet zdrojové kódy

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 před 11 roky
rodič
revize
56cb1ee121
1 změnil soubory, kde provedl 4 přidání a 1 odebrání
  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