Browse Source

fix do_tags for encrypted tags in db

oz123 11 years ago
parent
commit
e65e93597a
1 changed files with 2 additions and 2 deletions
  1. 2 2
      pwman/ui/cli.py

+ 2 - 2
pwman/ui/cli.py

@@ -886,11 +886,11 @@ class PwmanCliNew(PwmanCli):
         enc = CryptoEngine.get()
         if not enc.alive():
             enc._getcipher()
-        print "Tags: ",
+        print "Tags: \n",
         if len(tags) == 0:
             print "None",
         for t in tags:
-            print "%s " % t,
+            print enc.decrypt(t)
         print
 
     def get_tags(self, default=None):