diff options
-rw-r--r-- | Master/tlpkg/TeXLive/TLUtils.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm index fe903182484..5e9e631998c 100644 --- a/Master/tlpkg/TeXLive/TLUtils.pm +++ b/Master/tlpkg/TeXLive/TLUtils.pm @@ -3503,7 +3503,8 @@ sub create_mirror_list { $mfull =~ s!/$!!; $mfull .= "/" . $TeXLive::TLConfig::TeXLiveServerPath; #if ($first) { - push @ret, " $country $mfull"; + my $country_str = sprintf "%-12s", $country; + push @ret, " $country_str $mfull"; # $first = 0; #} else { # push @ret, " $mfull"; |