Enabled LibAlias.__str__ member.

Is used only for debug, but helps.
This commit is contained in:
SET 2020-08-10 18:58:36 -03:00
parent ab0591f102
commit 67cc8e9fca
1 changed files with 4 additions and 4 deletions

View File

@ -76,10 +76,10 @@ class LibAlias(object):
lib.descr = un_quote(m.group(5))
return lib
# def __str__(self):
# if not self.name:
# return 'empty LibAlias'
# return self.name+' -> `'+self.uri+'`'
def __str__(self):
if not self.name:
return 'empty LibAlias'
return self.name+' -> `'+self.uri+'`'
class KiConf(object):