From 97928bc5a059df5ca7b60975ebc43ac6c1644bb4 Mon Sep 17 00:00:00 2001 From: John Whitington Date: Fri, 11 Oct 2013 09:51:48 +0100 Subject: [PATCH] Fixed "now" as a date --- cpdf.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpdf.ml b/cpdf.ml index fc512b8..da16a20 100644 --- a/cpdf.ml +++ b/cpdf.ml @@ -418,7 +418,7 @@ let rec process_text text m = | (s, r)::t -> process_text (string_replace_all s r text) t let expand_date = function - | "now" -> Cpdfstrftime.strftime "D:%Y%m%d%t%M%S" + | "now" -> Cpdfstrftime.strftime "D:%Y%m%d%H%M%S" | x -> x let process_pages f pdf range =