Skip to content

Commit

Permalink
Fix resolver load
Browse files Browse the repository at this point in the history
  • Loading branch information
ademariag committed May 22, 2024
1 parent f2e5cb7 commit 6baf45e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kapitan/inventory/inv_omegaconf/resolvers.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def register_resolvers() -> None:

def register_user_resolvers(user_resolver_file: str) -> None:
"""import user resolvers specified in resolvers_path"""
if os.path.exists(user_resolver_file):
if not os.path.exists(user_resolver_file):
logger.debug(f"File {user_resolver_file} does not exist, ignoring")
return

Expand Down

0 comments on commit 6baf45e

Please sign in to comment.