tape/inventory: fix missing parameter in error message

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2021-02-05 15:26:16 +01:00 committed by Dietmar Maurer
parent b121711baa
commit f197c286d5

View File

@ -346,7 +346,7 @@ impl Inventory {
match last_pool {
Some(pool) => Ok(pool.to_string()),
None => bail!("media set {} is incomplete - unable to lookup pool"),
None => bail!("media set {} is incomplete - unable to lookup pool", media_set_uuid),
}
}