summaryrefslogtreecommitdiffstats
path: root/extensions/MyDashboard/lib
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2014-08-01 21:00:38 +0200
committerDavid Lawrence <dkl@mozilla.com>2014-08-01 21:21:18 +0200
commit56b5023bd1f633b14fb520a2e02188640a901161 (patch)
treeaaeafd9ccf35e9791d4980124c0db7056deb5729 /extensions/MyDashboard/lib
parent65fafdee632ad4794f59b745e3130caa7a21ee58 (diff)
downloadbugzilla-56b5023bd1f633b14fb520a2e02188640a901161.tar.gz
bugzilla-56b5023bd1f633b14fb520a2e02188640a901161.tar.xz
Fixed warnings generated by t/011pod.t
Diffstat (limited to 'extensions/MyDashboard/lib')
-rw-r--r--extensions/MyDashboard/lib/TimeAgo.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/MyDashboard/lib/TimeAgo.pm b/extensions/MyDashboard/lib/TimeAgo.pm
index 78badf5fa..0206bfebd 100644
--- a/extensions/MyDashboard/lib/TimeAgo.pm
+++ b/extensions/MyDashboard/lib/TimeAgo.pm
@@ -110,7 +110,7 @@ DateTime::Duration::Fuzzy -- express dates as fuzzy human-friendly strings
use DateTime::Duration::Fuzzy qw(time_ago);
use DateTime;
-
+
my $now = DateTime->new(
year => 2010, month => 12, day => 12,
hour => 19, minute => 59,
@@ -121,7 +121,7 @@ DateTime::Duration::Fuzzy -- express dates as fuzzy human-friendly strings
);
print time_ago($then, $now);
# outputs 'several hours ago'
-
+
print time_ago($then);
# $now taken from C<time> function