From 9a74fbe4a9ff163b7383acbfba3bd569dca03cfb Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Tue, 10 Jun 2014 23:09:41 -0400 Subject: [PATCH] Variant - ISO8601 periods contain uppercase characters. --- src/Variant.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Variant.cpp b/src/Variant.cpp index 574f92c8e..b434426da 100644 --- a/src/Variant.cpp +++ b/src/Variant.cpp @@ -1574,9 +1574,9 @@ Variant::operator std::string () const if (hours || minutes || seconds) { s << 'T'; - if (hours) s << hours << 'h'; - if (minutes) s << minutes << 'm'; - if (seconds) s << seconds << 's'; + if (hours) s << hours << 'H'; + if (minutes) s << minutes << 'M'; + if (seconds) s << seconds << 'S'; } return s.str ();