<div>The DEFAULT_GROUP was not working for me in contrib/importers/lastpass2pass.rb - during the import, uncategorized passwords were not being  imported with the DEFAULT_GROUP.<br></div><div><br></div><div>This simple change seemed to fix the problem for me:<br></div><div><br></div><div>diff --git a/contrib/importers/lastpass2pass.rb b/contrib/importers/lastpass2pass.rb<br></div><div>index bf46c8c..02e05ac 100755<br></div><div>--- a/contrib/importers/lastpass2pass.rb<br></div><div>+++ b/contrib/importers/lastpass2pass.rb<br></div><div>@@ -99,7 +99,7 @@ entries.each do |e|<br></div><div>   password = args.shift<br></div><div>   fav = args.pop<br></div><div>   grouping = args.pop<br></div><div>-  grouping = DEFAULT_GROUP if grouping == nil<br></div><div>+  grouping = DEFAULT_GROUP if grouping.empty?<br></div><div>   name = args.pop<br></div><div>   extra = args.join(",")[1...-1]<br></div><div><br></div><div>Although - it looks like this line was intentionally changed <a href="https://git.zx2c4.com/password-store/commit/contrib/importers/lastpass2pass.rb?id=85757e99bff29d6fa663a6b291c9047ccce8c6d3">https://git.zx2c4.com/password-store/commit/contrib/importers/lastpass2pass.rb?id=85757e99bff29d6fa663a6b291c9047ccce8c6d3</a>.<br></div><div><br></div><div>I'm not familiar with ruby, but here is my version:<br></div><div><br></div><div>$ ruby --version<br></div><div>ruby 2.6.3p62 (2019-04-16 revision 67580) [x86_64-linux]<br></div><div><br></div>