You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the script and the thorough writeup on your blog. I wanted to use it to go back to Keepass after having tried Enpass for a while but it didn't work for me. This was the error:
Traceback (most recent call last):
File "enpass-to-keepass.py", line 84, in <module>
main(parser.parse_args())
File "enpass-to-keepass.py", line 33, in main
for row in reader:
_csv.Error: line contains NULL byte
I did a little digging on stackexchange and fixed the issue by by replacing this line (#29):
reader = csv.reader(args.input_file)
with this:
reader = csv.reader((line.replace('\0','') for line in args.input_file), delimiter=",")
The text was updated successfully, but these errors were encountered:
Thanks for the script and the thorough writeup on your blog. I wanted to use it to go back to Keepass after having tried Enpass for a while but it didn't work for me. This was the error:
I did a little digging on stackexchange and fixed the issue by by replacing this line (#29):
with this:
The text was updated successfully, but these errors were encountered: