forked from organicmaps/organicmaps
[tools] fix building of osmctools
Signed-off-by: Harry Bond <endim8@pm.me>
This commit is contained in:
parent
513eaeef85
commit
ec770dd7c6
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ def file_uri_to_path(url : AnyStr) -> AnyStr:
|
|||
return file_path
|
||||
|
||||
def is_executable(fpath: AnyStr) -> bool:
|
||||
return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
|
||||
return fpath is not None and os.path.isfile(fpath) and os.access(fpath, os.X_OK)
|
||||
|
||||
|
||||
@functools.lru_cache()
|
||||
|
|
Loading…
Add table
Reference in a new issue