fix wrong printer method used for folder listing

This commit is contained in:
Clément DOUIN 2024-09-07 00:04:04 +02:00
parent bdb78f98ba
commit 2b5e2c1c14
No known key found for this signature in database
GPG key ID: 353E4A18EE0FAB72

View file

@ -53,7 +53,7 @@ impl FolderListCommand {
.with_some_name_color(toml_account_config.folder_list_table_name_color())
.with_some_desc_color(toml_account_config.folder_list_table_desc_color());
printer.log(table)?;
printer.out(table)?;
Ok(())
}
}