Browse Source

More win ui fixes

oz123 10 years ago
parent
commit
88691dcc14
1 changed files with 4 additions and 1 deletions
  1. 4 1
      pwman/ui/win.py

+ 4 - 1
pwman/ui/win.py

@@ -131,7 +131,7 @@ class PwmanCliWinNew(PwmanCliNew):
         print("{} {}".format(tools.typeset("Notes:", Fore.RED).ljust(width), node.notes))
         print("{}".format(tools.typeset("Tags: ", Fore.RED)), end=" ")
         for t in node.tags:
-            print(t.name)
+            print(t)
 
         def heardEnterWin():
             c = msvcrt.kbhit()
@@ -188,3 +188,6 @@ class PwmanCliWinNew(PwmanCliNew):
             os.system("start "+url)
         except Exception as e:
             self.error(e)
+
+    def do_cls(self, args):
+        os.system('cls')