Ver Fonte

Fix bug caused because of the removal of Tag.__str__

oz123 há 10 anos atrás
pai
commit
44f995a982
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      pwman/ui/base.py

+ 1 - 1
pwman/ui/base.py

@@ -525,7 +525,7 @@ class BaseCommands(BaseUI, HelpUI):
             if len(tags) == 0:
                 print ("None",)
             for t in tags:
-                print ("%s " % t)
+                print ("%s " % t.name)
             print
         except Exception as e:
             self.error(e)