Skip to content

Commit

Permalink
Handle arm64/extra for image table
Browse files Browse the repository at this point in the history
  • Loading branch information
Dramelac committed Aug 10, 2023
1 parent e66f734 commit 76aba48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exegol/model/ExegolImage.py
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ def getName(self) -> str:
def getDisplayName(self) -> str:
"""Image's display name getter"""
result = self.__alt_name if self.__alt_name else self.__name
if self.getArch() != ParametersManager().arch or logger.isEnabledFor(ExeLog.VERBOSE):
if self.getArch().split('/')[0] != ParametersManager().arch or logger.isEnabledFor(ExeLog.VERBOSE):
color = ConsoleFormat.getArchColor(self.getArch())
result += f" [{color}]({self.getArch()})[/{color}]"
return result
Expand Down

0 comments on commit 76aba48

Please sign in to comment.