Skip to content

Commit

Permalink
🎨 Changed logger.warning string in source
Browse files Browse the repository at this point in the history
  • Loading branch information
adrian-wojcik committed Apr 2, 2024
1 parent ad17a3f commit f0d218a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions viadot/sources/sap_rfc.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ def __init__(
sap_credentials = local_config.get(sap_credentials_key).get(env)
except AttributeError:
raise CredentialError(
f"Sap_credentials_key: {sap_credentials_key} is not stored neither in KeyVault or Local Config!"
f"sap_credentials_key: {sap_credentials_key} is not stored neither in KeyVault or Local Config!"
)
if sap_credentials is None:
raise CredentialError(f"Missing {env} credentials!")
Expand Down Expand Up @@ -753,7 +753,7 @@ def __init__(
sap_credentials = local_config.get(sap_credentials_key).get(env)
except AttributeError:
raise CredentialError(
f"Sap_credentials_key: {sap_credentials_key} is not stored neither in KeyVault or Local Config!"
f"sap_credentials_key: {sap_credentials_key} is not stored neither in KeyVault or Local Config!"
)
if sap_credentials is None:
raise CredentialError(f"Missing {env} credentials!")
Expand Down

0 comments on commit f0d218a

Please sign in to comment.