fix: ExtentionError => ExtensionError
This commit is contained in:
parent
5d39620e39
commit
fb230276a8
1 changed files with 2 additions and 2 deletions
|
|
@ -22,7 +22,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|||
import os
|
||||
from rougail.tiramisu import CONVERT_OPTION
|
||||
from rougail.config import RougailConfig
|
||||
from rougail.error import ExtentionError
|
||||
from rougail.error import ExtensionError
|
||||
from tiramisu.error import ValueOptionError
|
||||
|
||||
|
||||
|
|
@ -43,7 +43,7 @@ class RougailUserDataEnvironment:
|
|||
rougailconfig["step.user_data"] = user_data
|
||||
user_data = rougailconfig["step.user_data"]
|
||||
if "environment" not in user_data:
|
||||
raise ExtentionError("environment is not set in step.user_data")
|
||||
raise ExtensionError("environment is not set in step.user_data")
|
||||
if "environment.with_secrets" in rougailconfig:
|
||||
self.with_secrets = rougailconfig["environment.with_secrets"]
|
||||
else:
|
||||
|
|
|
|||
Loading…
Reference in a new issue