diff options
author | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-29 10:29:21 +0100 |
---|---|---|
committer | marty hiatt <martianhiatus [a t] riseup [d o t] net> | 2022-11-29 10:29:21 +0100 |
commit | 7d676ccd4a4076c65d7b53dbdd9c7846083ffcd9 (patch) | |
tree | 71c1401e961c0aab0f95a116de49ce95dbcb0725 | |
parent | f493eb003bfb03205b81073adca1448c72317242 (diff) |
tweak scheduled toot message string date format
-rw-r--r-- | lisp/mastodon-toot.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mastodon-toot.el b/lisp/mastodon-toot.el index 4a10131..1ddaca8 100644 --- a/lisp/mastodon-toot.el +++ b/lisp/mastodon-toot.el @@ -1133,7 +1133,7 @@ Return its two letter ISO 639 1 code." (interactive) (let* ((time-value (org-read-date nil t nil "Schedule toot:")) (iso8601-string (format-time-string "%Y-%m-%dT%H:%M:%S%z" time-value)) - (msg-str (format-time-string "%Y-%m-%d at %H:%M[%z]" time-value))) + (msg-str (format-time-string "%d-%m-%y at %H:%M[%z]" time-value))) (setq-local mastodon-toot--scheduled-at iso8601-string) (message (format "Toot scheduled for %s." msg-str)))) |