Browse Source

Python 2.4+ compat

Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
Marcin Kuzminski 11 years ago
parent
commit
b9f5641e39
2 changed files with 6 additions and 2 deletions
  1. 1 1
      dulwich/client.py
  2. 5 1
      dulwich/tests/test_pack.py

+ 1 - 1
dulwich/client.py

@@ -844,7 +844,7 @@ class HttpGitClient(GitClient):
         req = urllib2.Request(url, headers=headers, data=data)
         try:
             resp = self._perform(req)
-        except urllib2.HTTPError as e:
+        except urllib2.HTTPError, e:
             if e.code == 404:
                 raise NotGitRepository()
             if e.code != 200:

+ 5 - 1
dulwich/tests/test_pack.py

@@ -436,12 +436,16 @@ class TestThinPack(PackTests):
         self.pack_dir = tempfile.mkdtemp()
         self.addCleanup(shutil.rmtree, self.pack_dir)
         self.pack_prefix = os.path.join(self.pack_dir, 'pack')
-        with open(self.pack_prefix + '.pack', 'wb') as f:
+
+        f = open(self.pack_prefix + '.pack', 'wb')
+        try:
             build_pack(f, [
                 (REF_DELTA, (self.blobs['foo'].id, 'foo1234')),
                 (Blob.type_num, 'bar'),
                 (REF_DELTA, (self.blobs['bar'].id, 'bar2468'))],
                 store=self.store)
+        finally:
+            f.close()
 
         # Index the new pack.
         pack = self.make_pack(True)