فهرست منبع

Fix bug caused because of the removal of Tag.__str__

oz123 10 سال پیش
والد
کامیت
44f995a982
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  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:
             if len(tags) == 0:
                 print ("None",)
                 print ("None",)
             for t in tags:
             for t in tags:
-                print ("%s " % t)
+                print ("%s " % t.name)
             print
             print
         except Exception as e:
         except Exception as e:
             self.error(e)
             self.error(e)