<div dir="ltr">Hi all,<br>I met a tiny issue when I imported my big 'lastpass.csv' using 'lastpass2pass.rb'.<br>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'.<br>Those lines break the script 'lastpass2pass.rb' during the import.<br>I solve the issue with an updated regex.<br>At line 79: <br>before<br>  ==> if line =~ /^(http|ftp|ssh)/<br>after<br>  ==> if line =~ /^(http|ftp|ssh).*,.*,/<br><br>Usually, it's rare to have two commas (',') after an URL at the beginning of the lines, in the 'notes area'. <br><br>Regards.<br></div>