aboutsummaryrefslogtreecommitdiff
path: root/module/vcomponent
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-03-21 00:37:45 +0100
committerHugo Hörnquist <hugo@lysator.liu.se>2020-03-21 00:37:45 +0100
commit2570b8777f28c3c26773547fdddb35ac2262ca01 (patch)
treebdcf779ae29fb72e2bc0d05cbc4cbc8506d959f1 /module/vcomponent
parentMinor cleanup. (diff)
downloadcalp-2570b8777f28c3c26773547fdddb35ac2262ca01.tar.gz
calp-2570b8777f28c3c26773547fdddb35ac2262ca01.tar.xz
Fix invalid format in vcomponent output.
Diffstat (limited to 'module/vcomponent')
-rw-r--r--module/vcomponent/output.scm3
1 files changed, 2 insertions, 1 deletions
diff --git a/module/vcomponent/output.scm b/module/vcomponent/output.scm
index 631e37e2..d142e922 100644
--- a/module/vcomponent/output.scm
+++ b/module/vcomponent/output.scm
@@ -73,7 +73,8 @@ Removes the X-HNH-FILENAME attribute, and sets PRODID to
(string-append
(date->string (get-date value) "~Y~m~d")
"T"
- (time->string (get-time value) "~H~M~S~z"))]))
+ (time->string (get-time value) "~H~M~S" ; ~z
+ ))]))
((X-HNH-DURATION)
(format #f "~s" value))
(else value)))))