On Monday, November 12, 2018 at 4:57:12 PM UTC+1, Adam Barnes wrote: > > > $WCDATEUTC=%Y-%m-%dT%H:%M:%S%z$ > $WCDATE=%Y-%m-%dT%H:%M:%S%z$ >
You append %z also to $WCDATEUTC, so why are you surprised that it shows? The %z means "the offset from UTC in ISO8601 format; no characters if* time zone* is unknown". Meaning that %z shows the offset from your local time zone, no matter what time is passed to the strftime() function. Just don't add %z to the string and you're fine. Stefan -- You received this message because you are subscribed to the Google Groups "TortoiseSVN" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/tortoisesvn/ad02efd4-abad-4dc5-afd4-3c680ee2c994%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
