summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/skaldpress/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/skaldpress/main.rs b/src/skaldpress/main.rs
index cde1dee..25a3e92 100644
--- a/src/skaldpress/main.rs
+++ b/src/skaldpress/main.rs
@@ -77,7 +77,7 @@ fn sp_all_tagged_by(
compiled_files = COMPILED_FILES.as_ref();
}
let Some(tagged_files) = compiled_files_by_tag.get(&args[0]) else {
- println!("\x1b[35mNo tags for {}\x1b[0m", args[0]);
+ println!(" \x1b[35mNo tags for {}\x1b[0m", args[0]);
return Ok(String::new());
};
@@ -177,7 +177,7 @@ fn wrap_template(
let template_parent = &TryInto::<String>::try_into(*template_parent)
.map_err(|e| SkaldpressError::MetadataError(12, std::io::Error::other(e)))?;
- println!("Wrapping in template {}", template_parent);
+ println!(" Wrapping in template {}", template_parent);
wrap_template(
macro_processor,
&get_template_path(template_parent, opts),