Skip to content

Commit

Permalink
Password names now contain path
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Jul 16, 2016
1 parent eed6f62 commit 4d658fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Console::writeLine($db);
// Show top-level groups and password entries inside these
foreach ($db->groups() as $group) {
foreach ($group->passwords() as $name => $password) {
Console::writeLine($group->name(), '/', $name, ': ', $password);
Console::writeLine($name, ': ', $password);
}
}
$db->close();
Expand Down

0 comments on commit 4d658fa

Please sign in to comment.