mirror of
https://github.com/nishiki/manage-password.git
synced 2025-02-20 01:50:04 +00:00
fix syntax error
This commit is contained in:
parent
465b60fd41
commit
9225e360b9
1 changed files with 1 additions and 2 deletions
|
@ -103,7 +103,6 @@ module MPW
|
|||
|
||||
# Add item
|
||||
@remote.list.each do |r|
|
||||
puts r.last_edit
|
||||
if r.last_edit > @config.last_update
|
||||
item = Item.new(id: r.id,
|
||||
name: r.name,
|
||||
|
@ -114,7 +113,7 @@ module MPW
|
|||
password: r.password,
|
||||
port: r.port,
|
||||
comment: r.comment,
|
||||
created: r.created
|
||||
created: r.created,
|
||||
last_edit: r.last_edit
|
||||
)
|
||||
puts item.last_edit
|
||||
|
|
Loading…
Add table
Reference in a new issue