fixed typo

This commit is contained in:
bom 2022-01-28 10:45:51 +01:00
parent d8e31dcfcb
commit aa4f8ee274
2 changed files with 1 additions and 2 deletions

View file

@ -43,7 +43,7 @@ class AwsBackendPropertiesMixin(DevopsTerraformBuild):
self.print_terraform_command(tf) self.print_terraform_command(tf)
if self.use_workspace: if self.use_workspace:
try: try:
tf.workspace('select', slef.stage) tf.workspace('select', self.stage)
self.print_terraform_command(tf) self.print_terraform_command(tf)
except: except:
tf.workspace('new', self.stage) tf.workspace('new', self.stage)

View file

@ -1,4 +1,3 @@
from dda_python_terraform import *
from boto3 import * from boto3 import *
from .python_util import execute from .python_util import execute
from .aws_backend_properties_mixin import AwsBackendPropertiesMixin from .aws_backend_properties_mixin import AwsBackendPropertiesMixin