[fix][aur] package name tooltip was displaying only the repository ( table row )

This commit is contained in:
Vinícius Moreira
2020-02-18 10:46:17 -03:00
parent 004db74b7a
commit 7aaf0565cc
2 changed files with 3 additions and 1 deletions

View File

@@ -125,7 +125,7 @@ class ArchPackage(SoftwarePackage):
return False
def get_name_tooltip(self) -> str:
return '{}: {}'.format(self.i18n['repository'], self.mirror)
return '{} ( {}: {} )'.format(self.name, self.i18n['repository'], self.mirror)
def __str__(self):
return self.__repr__()