about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xleo.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/leo.pl b/leo.pl
index 34a518f..6ff74c2 100755
--- a/leo.pl
+++ b/leo.pl
@@ -9,7 +9,7 @@ use Config::Tiny;
 use POSIX qw(strftime);
 use Getopt::Long qw/ GetOptions /;
 
-my $version = "leo v0.4.3";
+my $version = "leo v0.4.4";
 
 # Options.
 my %options = (
@@ -230,4 +230,4 @@ Profile:\n};
 sub tar_create { run3 ["/bin/tar", "cf", @_]; }
 sub tar_list { print "\n"; run3 ["/bin/tar", "tvf", @_]; print "\n";}
 
-sub date { return strftime '%FT%T%z', gmtime() }
+sub date { return strftime '%FT%T%z', localtime() }
78'>78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122