stapix

Yet another static page generator for photo galleries

Commit
c1960748ca53b89124d46ec68e0deea749f38958
Parent
497770438ca689ac5654f3f2e07b7d4eeed4b31b
Author
Pablo <pablo-escobar@riseup.net>
Date

Updated a warning

Diffstat

1 file changed, 1 insertion, 1 deletion

Status File Name N° Changes Insertions Deletions
Modified src/main.rs 2 1 1
diff --git a/src/main.rs b/src/main.rs
@@ -337,7 +337,7 @@ fn render_thumbnail(pic: Picture) -> bool {
             .expect("os should support file modification date");
 
         if thumb_mod_date > img_mod_date {
-            println!("WARNING: Skipped rendering the WebP thumbnail for {name:?}.\nUpdate {path:?} to overwrite this behaviour",
+            println!("WARNING: Skipped rendering the thumbnail for {name:?} (update {path:?} to overwrite)",
                      name = pic.file_name, path = pic.path);
             return true;
         }