diff --git a/deployability/modules/allocation/vagrant/instance.py b/deployability/modules/allocation/vagrant/instance.py index 3bdd8227e1..8b3c838931 100755 --- a/deployability/modules/allocation/vagrant/instance.py +++ b/deployability/modules/allocation/vagrant/instance.py @@ -122,10 +122,10 @@ def status(self) -> str: output = VagrantUtils.remote_command(f"sudo test -d {self.host_instance_dir} && echo 'Directory exists' || echo 'Directory does not exist'", self.remote_host_parameters) if 'Directory exists' in output: if VagrantUtils.remote_command(f"sudo /usr/local/bin/prlctl list -a | grep {self.identifier}", self.remote_host_parameters): - logger.warning(f"The instance was found, it will be deleted. The creation of the instance must be retried..") + logger.warning(f"The instance was found, it will be deleted. The creation of the instance must be retried.") self.__run_vagrant_command(['destroy', '-f']) self.__cleanup_remote_host() - raise ValueError(f"Cannot obtain the status of the instance {self.identifier}, the creation of the instance must be retried..") + raise ValueError(f"Cannot obtain the status of the instance {self.identifier}, the creation of the instance must be retried.") else: VagrantUtils.remote_command(f"sudo rm -rf {self.host_instance_dir}", self.remote_host_parameters) raise ValueError(f"Instance {self.identifier} is not running, remote instance dir {self.host_instance_dir} was removed. The creation of the instance must be retried.")