That worked like a charm, thanks! <br><div class="gmail_quote"><div dir="ltr">On Sat, Jul 11, 2015 at 06:41 Tobias V. Langhoff <<a href="mailto:tobias@langhoff.no">tobias@langhoff.no</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">On Thu, Jul 9, 2015 at 6:56 AM, Fuzzy <<a href="mailto:blessedbiped@gmail.com" target="_blank">blessedbiped@gmail.com</a>> wrote:<br>
> I keep getting an error when I try to import my passwords from my lastpass<br>
> csv. I'm using Ubuntu 14.04, with ruby 1.9.4. What am I missing?<br>
><br>
> lastpass2pass.rb:102:in `block in <main>': undefined method `empty?' for<br>
> nil:NilClass (NoMethodError)<br>
> lastpass2pass.rb:95:in `each'<br>
> lastpass2pass.rb:95:in `<main>'<br>
<br>
Hard to say if this is a bug or not (maybe the CSV format from<br>
LastPass has changed?), so I've put the developer of that import<br>
script on CC.<br>
<br>
At any rate, try changing line 102 in the script from<br>
<br>
  grouping = DEFAULT_GROUP if grouping.empty?<br>
<br>
to<br>
<br>
  grouping = DEFAULT_GROUP if grouping.nil? || grouping.empty?<br>
<br>
I think that should work.<br>
<br>
--<br>
Tobias V. Langhoff<br>
</blockquote></div>