Time printing bugfixes- Use a #\T to separate date and time per iso standard.
[clsql.git] / sql / time.lisp
index 51cbcbef7cbb214049624c7fa29fdbfadc2ba6f6..83e17a0a121436c65f5ee8fef17681de75ba6d88 100644 (file)
             (princ month stream)
             (princ #\- stream)
             (when (< day 10) (princ #\0 stream))
-            (princ month stream)
-            (princ #\space stream)
+            (princ day stream)
+            (princ #\T stream) ;strict ISO says T here isn't optional.
             (when (< hour 10) (princ #\0 stream))
             (princ hour stream)
             (princ #\: stream)