SVN.pm::parse_svn_date: allow timestamps with a single-digit hour
authorRomanBelinsky <belinsky.roman@gmail.com>
Tue, 11 Feb 2014 16:23:02 +0000 (18:23 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 17 Apr 2014 18:01:26 +0000 (11:01 -0700)
commit784f4b6f33afb439a3d95e5751731a88df545889
tree0c809667598ee0579cdce5c7ba0d23997046b7db
parent0bc85abb7aa9b24b093253018801a0fb43d01122
SVN.pm::parse_svn_date: allow timestamps with a single-digit hour

Some broken subversion server gives timestamps with only one digit
in the hour part, like this:

    2014-01-07T5:01:02.048176Z

Loosen the regexp that expected to see two-digit hour, minute and
second parts to accept a single-digit hour (but not minute or
second).

Signed-off-by: Stepan Kasal <kasal@ucw.cz>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
perl/Git/SVN.pm