Kaynağa Gözat

Fix bug caused because of the removal of Tag.__str__

oz123 10 yıl önce
ebeveyn
işleme
44f995a982
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  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)