Skip to content

Commit

Permalink
Merge pull request #1732 from rndmh3ro/patch-1
Browse files Browse the repository at this point in the history
fix typos
  • Loading branch information
alexAubin authored Oct 22, 2023
2 parents 62779ee + 54bc79e commit e3ee8df
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/utils/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,10 +61,10 @@ def apply(
try:
if todo == "deprovision":
# FIXME : i18n, better info strings
logger.info(f"Deprovisionning {name}...")
logger.info(f"Deprovisioning {name}...")
old.deprovision(context=context)
elif todo == "provision":
logger.info(f"Provisionning {name}...")
logger.info(f"Provisioning {name}...")
new.provision_or_update(context=context)
elif todo == "update":
logger.info(f"Updating {name}...")
Expand All @@ -90,10 +90,10 @@ def apply(
# (NB. here we want to undo the todo)
if todo == "deprovision":
# FIXME : i18n, better info strings
logger.info(f"Reprovisionning {name}...")
logger.info(f"Reprovisioning {name}...")
old.provision_or_update(context=context)
elif todo == "provision":
logger.info(f"Deprovisionning {name}...")
logger.info(f"Deprovisioning {name}...")
new.deprovision(context=context)
elif todo == "update":
logger.info(f"Reverting {name}...")
Expand Down

0 comments on commit e3ee8df

Please sign in to comment.