Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mslib/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ def _check_version(self):
# Check if "search mss" yields a higher version than the currently running one
search = self._execute_command(f"{self.command} search mss")
self.new_version = search.split("\n")[-2].split()[1]
c_list = self._execute_command(f"{self.command} list mss")
c_list = self._execute_command(f"{self.command} list -f mss")
self.old_version = c_list.split("\n")[-2].split()[1]
if any(c.isdigit() for c in self.new_version):
if self.new_version > self.old_version:
Expand Down Expand Up @@ -933,7 +933,7 @@ def _verify_newest_mss(self):
"""
Return if the newest mss exists in the environment or not
"""
verify = self._execute_command(f"{self.command} list mss")
verify = self._execute_command(f"{self.command} list -f mss")
if self.new_version in verify:
return True

Expand Down