##// END OF EJS Templates
Added tag v4.27.1 for changeset 6195da4fc454
Added tag v4.27.1 for changeset 6195da4fc454

File last commit:

r531:5e3115e0 stable
r1001:515c2584 stable
Show More
handle-dir-refs.patch
15 lines | 678 B | text/x-diff | DiffLexer
This patch allows handling directories inside the refs/heads. This was added in dulwich
0.19.X series
diff -rup dulwich-0.13.0-orig/dulwich/refs.py dulwich-0.13.0/dulwich/refs.py
--- dulwich-0.13.0-orig/dulwich/refs.py 2018-10-09 09:42:38.182597268 +0200
+++ dulwich-0.13.0/dulwich/refs.py 2018-10-09 09:43:39.057145566 +0200
@@ -509,7 +509,7 @@ class DiskRefsContainer(RefsContainer):
# Read only the first 40 bytes
return header + f.read(40 - len(SYMREF))
except IOError as e:
- if e.errno == errno.ENOENT:
+ if e.errno in (errno.ENOENT, errno.EISDIR):
return None
raise