summaryrefslogtreecommitdiff
path: root/src/directive/format.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/directive/format.rs')
-rw-r--r--src/directive/format.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/directive/format.rs b/src/directive/format.rs
index a40c439..ee9c7ec 100644
--- a/src/directive/format.rs
+++ b/src/directive/format.rs
@@ -12,7 +12,7 @@ impl Format {
pub const ALLOW_ANY_UNNAMED: bool = true;
pub fn process(&self, _site: &Site, _meta: &mut PageMeta) -> Result<String, SiteError> {
- Ok("FIXME:format".into())
+ Err(SiteError::UnimplementedDirective("format".into()))
}
}