aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--module/output/types.scm10
1 files changed, 4 insertions, 6 deletions
diff --git a/module/output/types.scm b/module/output/types.scm
index 76a03ff1..ad6a39a2 100644
--- a/module/output/types.scm
+++ b/module/output/types.scm
@@ -16,13 +16,11 @@
(date->string value "~Y~m~d"))
(define (write-datetime param value)
+ ;; NOTE We really should output TZID from param here, but
+ ;; we first need to change so these writers can output
+ ;; parameters.
(datetime->string (hashq-ref param 'X-HNH-ORIGINAL value)
- ;; TODO ~Z ?
- "~Y~m~dT~H~M~S~Z"
- #;
- (let ((tz (and=> (param vline 'TZID) car)))
- (when (and tz (string= tz "UTC"))
- (display #\Z)))))
+ "~Y~m~dT~H~M~S~Z"))
;; TODO
(define (write-duration _ value)