util.datamanager: Fix missing separator in log line

This commit is contained in:
Kim Alvefur 2023-07-10 17:52:52 +02:00
parent 2b56e0473a
commit 96bc5fd439

View file

@ -397,7 +397,7 @@ local index_mt = {
}
local function get_list_index(username, host, datastore)
log("debug", "Loading index for (%s%s/%s)", username, host, datastore);
log("debug", "Loading index for (%s@%s/%s)", username, host, datastore);
local index_filename = getpath(username, host, datastore, "lidx");
local ih = io_open(index_filename);
if ih then