File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ def find_submodule_git_dir(d: PathLike) -> Optional[PathLike]:
112
112
path = content [8 :]
113
113
114
114
if Git .is_cygwin ():
115
- # Cygwin creates submodules prefixed with `/cygdrive/...` suffixes .
115
+ # Cygwin creates submodules prefixed with `/cygdrive/...`.
116
116
# Cygwin git understands Cygwin paths much better than Windows ones.
117
117
# Also the Cygwin tests are assuming Cygwin paths.
118
118
path = cygpath (path )
Original file line number Diff line number Diff line change @@ -339,7 +339,7 @@ def _get_exe_extensions() -> Sequence[str]:
339
339
if PATHEXT :
340
340
return tuple (p .upper () for p in PATHEXT .split (os .pathsep ))
341
341
elif sys .platform == "win32" :
342
- return (".BAT" , "COM" , ".EXE" )
342
+ return (".BAT" , ". COM" , ".EXE" )
343
343
else :
344
344
return ()
345
345
You can’t perform that action at this time.
0 commit comments