瀏覽代碼

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 年之前
父節點
當前提交
56cb1ee121
共有 1 個文件被更改,包括 4 次插入1 次删除
  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