Skip to content

Commit ce4bffe

Browse files
authored
fix if issue
1 parent a482213 commit ce4bffe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/adlsgen2setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ async def check_md5(self, path: str, md5_hash: str) -> bool:
181181
# if there is a file called .md5 in this directory, see if its updated
182182
stored_hash = None
183183
hash_path = f"{path}.md5"
184-
os.path.exists(hash_path):
184+
if os.path.exists(hash_path):
185185
with open(hash_path, encoding="utf-8") as md5_f:
186186
stored_hash = md5_f.read()
187187

0 commit comments

Comments
 (0)