Fri Aug 29 17:32:23 2014ericnadler [...] gmail.com - Ticket created
Subject:
minor issue in Time::Seconds->pretty
Date:
Fri, 29 Aug 2014 16:31:54 -0500
To:
bug-Time-Piece [...] rt.cpan.org
From:
Eric Nadler <ericnadler [...] gmail.com>
In the pretty function for Time::Seconds, a negative value in days will not
show the "minus" prefix.
The line: $str = $days . " days, "
overwrites the $str value. The line should be: $str .= $days . " days, "
Thank you,
Eric Nadler