Skip to content

Commit 1e1280d

Browse files
committed
flake
1 parent 14dd881 commit 1e1280d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git/index/fun.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def stat_mode_to_index_mode(mode):
116116
return S_IFLNK
117117
if S_ISDIR(mode) or S_IFMT(mode) == S_IFGITLINK: # submodules
118118
return S_IFGITLINK
119-
return S_IFREG | (mode & S_IXUSR and 0o755 or 0o644) # blobs with or without executable bit
119+
return S_IFREG | (mode & S_IXUSR and 0o755 or 0o644) # blobs with or without executable bit
120120

121121

122122
def write_cache(entries: Sequence[Union[BaseIndexEntry, 'IndexEntry']], stream: IO[bytes],

0 commit comments

Comments
 (0)