summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xMaster/texmf/scripts/texlive/tlmgr.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf/scripts/texlive/tlmgr.pl b/Master/texmf/scripts/texlive/tlmgr.pl
index 59923ea66d4..1e18da8f8d1 100755
--- a/Master/texmf/scripts/texlive/tlmgr.pl
+++ b/Master/texmf/scripts/texlive/tlmgr.pl
@@ -1507,7 +1507,7 @@ sub action_restore {
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
localtime($revs{$rs});
# localtime returns dates starting from 1900, and the month is 0..11
- $dstr = sprintf "%04d-%02d-%02d, %02d:%02d",
+ $dstr = sprintf "%04d-%02d-%02d %02d:%02d",
$year+1900, $mon+1, $mday, $hour, $min;
}
print "$rs ($dstr) ";
@@ -5292,7 +5292,7 @@ With I<pkg> given but no I<rev>, list all available backup revisions of
I<pkg>.
When listing available packages tlmgr shows the revision and in
-parenthesis the creation time if available (in format yyyy-mm-dd, hh:mm).
+parenthesis the creation time if available (in format yyyy-mm-dd hh:mm).
With both I<pkg> and I<rev>, tries to restore the package from the
specified backup.