Hi all,
I met a tiny issue when I imported my big 'lastpass.csv' using
'lastpass2pass.rb'.
I do not use Lastpass only to store passwords. Many of entries have a block
of lines in the Notes area. Few of them have lines beginning with 'http'.
Those lines break the script 'lastpass2pass.rb' during the import.
I solve the issue with an updated regex.
At line 79:
before
  ==> if line =~ /^(http|ftp|ssh)/
after
  ==> if line =~ /^(http|ftp|ssh).*,.*,/

Usually, it's rare to have two commas (',') after an URL at the beginning
of the lines, in the 'notes area'.

Regards.
_______________________________________________
Password-Store mailing list
[email protected]
http://lists.zx2c4.com/mailman/listinfo/password-store

Reply via email to