Fix for my previous patch for keepassx2pass.py, carriage return should
have been '\n' not '\N'

Von

---
 contrib/keepassx2pass.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/contrib/keepassx2pass.py b/contrib/keepassx2pass.py
index 6cf2268..1804e33 100755
--- a/contrib/keepassx2pass.py
+++ b/contrib/keepassx2pass.py
@@ -18,7 +18,7 @@ def password_data(element):
     """ Return password data and additional info if available from
     password entry element. """
     passwd = element.find('password').text
-    ret = passwd + "\N" if passwd else "\N"
+    ret = passwd + "\n" if passwd else "\n"
     for field in ['username', 'url', 'comment']:
         fel = element.find(field)
         if fel.text is not None:
--
1.7.0
_______________________________________________
Password-Store mailing list
[email protected]
http://lists.zx2c4.com/listinfo.cgi/password-store-zx2c4.com

Reply via email to