1
0
Fork 0
mirror of https://github.com/nishiki/manage-password.git synced 2025-03-19 21:04:35 +00:00

fix nothing item message in copy mode

This commit is contained in:
Adrien Waksberg 2017-02-20 22:26:57 +01:00
parent a3dd83e63c
commit afdbb05bc5

View file

@ -247,7 +247,6 @@ class Cli
if result.length == 0
puts I18n.t('display.nothing')
else
table(result)
end
@ -494,7 +493,7 @@ class Cli
items = @mpw.list(options)
if items.length == 0
puts "#{I18n.t('display.warning')}: #{I18n.t('warning.select')}".yellow
puts I18n.t('display.nothing')
else
table(items)