Skip to content

Commit

Permalink
Satellit: Fix telnet
Browse files Browse the repository at this point in the history
  • Loading branch information
LKuemmel committed Nov 22, 2024
1 parent 32a53d4 commit 0c2e253
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def _create_client(self):
def _validate_version(self):
try:
parsed_answer = get_version_by_telnet(
f'{self.VALID_MODELS["type"]}{self.VALID_MODELS["versions"][0]}', self.config.configuration.ip_address)
f'{self.VALID_MODELS["type"]} {self.VALID_MODELS["versions"][0]}', self.config.configuration.ip_address)
for version in self.VALID_MODELS["versions"]:
if version in parsed_answer:
self.version = True
Expand Down

0 comments on commit 0c2e253

Please sign in to comment.