diff options
author | David Phillips <david@yeah.nah.nz> | 2018-10-24 00:30:34 +1300 |
---|---|---|
committer | David Phillips <david@yeah.nah.nz> | 2018-10-24 00:30:34 +1300 |
commit | a59f6c4d3d8664526c09d30b974a2ae9eca03b07 (patch) | |
tree | aff294ba0c926d9af1ca40b8a12ac085f36e7ce6 /Plugin | |
parent | ffd1cdbfdca6c4a0b413c7adb39b6dafc260b1e3 (diff) | |
download | idalius-a59f6c4d3d8664526c09d30b974a2ae9eca03b07.tar.xz |
Timezone: update format
Diffstat (limited to 'Plugin')
-rw-r--r-- | Plugin/Timezone.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Plugin/Timezone.pm b/Plugin/Timezone.pm index a8a8fcc..1e528ae 100644 --- a/Plugin/Timezone.pm +++ b/Plugin/Timezone.pm @@ -34,7 +34,7 @@ sub time { if ($case_nick) { my $d = DateTime->now(); $d->set_time_zone($config->{timezone}->{$case_nick}); - my $timestr = $d->strftime("%Y-%m-%d %H:%M %Z"); + my $timestr = $d->strftime("%H:%M on %a %d %b, %Y (%Z)"); return "$requester: $nick\'s clock reads $timestr"; } else { return "$requester: I don't know what timezone $nick is in"; |