Enabled LibAlias.__str__ member.
Is used only for debug, but helps.
This commit is contained in:
parent
ab0591f102
commit
67cc8e9fca
|
|
@ -76,10 +76,10 @@ class LibAlias(object):
|
||||||
lib.descr = un_quote(m.group(5))
|
lib.descr = un_quote(m.group(5))
|
||||||
return lib
|
return lib
|
||||||
|
|
||||||
# def __str__(self):
|
def __str__(self):
|
||||||
# if not self.name:
|
if not self.name:
|
||||||
# return 'empty LibAlias'
|
return 'empty LibAlias'
|
||||||
# return self.name+' -> `'+self.uri+'`'
|
return self.name+' -> `'+self.uri+'`'
|
||||||
|
|
||||||
|
|
||||||
class KiConf(object):
|
class KiConf(object):
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue