From e458cd8c564e13a04656e6a8337b7d5225cb1f8d Mon Sep 17 00:00:00 2001 From: tierno Date: Wed, 12 Feb 2020 10:46:51 +0000 Subject: [PATCH] fix fslocal file_exists Change-Id: I871a4912741a0542f3b70d1fdb0d6ca118aa0da3 Signed-off-by: tierno --- osm_common/fslocal.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/osm_common/fslocal.py b/osm_common/fslocal.py index 7794754..b90b25e 100644 --- a/osm_common/fslocal.py +++ b/osm_common/fslocal.py @@ -93,6 +93,8 @@ class FsLocal(FsBase): else: f = "/".join(storage) if os.path.exists(self.path + f): + if not mode: + return True if mode == "file" and os.path.isfile(self.path + f): return True if mode == "dir" and os.path.isdir(self.path + f): -- 2.17.1