소스 검색

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:
                 print ("None",)
             for t in tags:
-                print ("%s " % t)
+                print ("%s " % t.name)
             print
         except Exception as e:
             self.error(e)