Inline a format variable (#6007)

This commit is contained in:
teor 2023-01-21 00:11:32 +10:00 committed by GitHub
parent 81846d81e0
commit 6cc38e064b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 4 deletions

View File

@ -86,10 +86,7 @@ fn main() -> Result<()> {
template_obj.entry("maxtime").or_insert_with(|| {
if time_source.uses_max_time() {
eprintln!(
"maxtime field is missing, using curtime for maxtime: {:?}",
current_time,
);
eprintln!("maxtime field is missing, using curtime for maxtime: {current_time:?}");
}
current_time.timestamp().into()