Rev 5262: Python 2.4 friendliness is important to bzr. in http://bazaar.launchpad.net/~lifeless/bzr/trunk

Robert Collins robertc at robertcollins.net
Thu May 27 03:52:51 BST 2010


At http://bazaar.launchpad.net/~lifeless/bzr/trunk

------------------------------------------------------------
revno: 5262
revision-id: robertc at robertcollins.net-20100527025239-tmnb6dbjcd8vrsvz
parent: pqm at pqm.ubuntu.com-20100527022030-wz9f4rvm9rfk6r59
committer: Robert Collins <robertc at robertcollins.net>
branch nick: trunk
timestamp: Thu 2010-05-27 14:52:39 +1200
message:
  Python 2.4 friendliness is important to bzr.
=== modified file 'bzrlib/transport/gio_transport.py'
--- a/bzrlib/transport/gio_transport.py	2010-05-25 09:15:35 +0000
+++ b/bzrlib/transport/gio_transport.py	2010-05-27 02:52:39 +0000
@@ -304,21 +304,22 @@
         f = None
         fout = None
         try:
-            f = self._get_GIO(tmppath)
-            fout = f.create()
-            closed = False
-            length = self._pump(fp, fout)
-            fout.close()
-            closed = True
-            self.stat(tmppath)
-            dest = self._get_GIO(relpath)
-            f.move(dest, flags=gio.FILE_COPY_OVERWRITE)
-            f = None
-            if mode is not None:
-                self._setmode(relpath, mode)
-            return length
-        except gio.Error, e:
-            self._translate_gio_error(e, relpath)
+            try:
+                f = self._get_GIO(tmppath)
+                fout = f.create()
+                closed = False
+                length = self._pump(fp, fout)
+                fout.close()
+                closed = True
+                self.stat(tmppath)
+                dest = self._get_GIO(relpath)
+                f.move(dest, flags=gio.FILE_COPY_OVERWRITE)
+                f = None
+                if mode is not None:
+                    self._setmode(relpath, mode)
+                return length
+            except gio.Error, e:
+                self._translate_gio_error(e, relpath)
         finally:
             if not closed and fout is not None:
                 fout.close()




More information about the bazaar-commits mailing list