aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/feeds
diff options
context:
space:
mode:
authorRafał Miłecki <rafal@milecki.pl>2016-11-02 15:02:53 +0100
committerJohn Crispin <john@phrozen.org>2016-11-03 08:34:38 +0100
commita2944a0c09b8486878482590b3409a3c0c710591 (patch)
tree7ca9bd13a19fc81acc2e639f4722c12982643983 /scripts/feeds
parentb2135f3ba5f0ce3bac39620bcdfd46a0225727b5 (diff)
downloadupstream-a2944a0c09b8486878482590b3409a3c0c710591.tar.gz
upstream-a2944a0c09b8486878482590b3409a3c0c710591.tar.bz2
upstream-a2944a0c09b8486878482590b3409a3c0c710591.zip
scripts/feeds: use 10 chars for feed name column width
It's always hard to find a reasonable width that will make everyone happy. This one at least makes "telephony" (one of default feeds) name fit the column and hopefully isn't too big. Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
Diffstat (limited to 'scripts/feeds')
-rwxr-xr-xscripts/feeds2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/feeds b/scripts/feeds
index 045835c0cc..d1f3824057 100755
--- a/scripts/feeds
+++ b/scripts/feeds
@@ -354,7 +354,7 @@ sub list {
printf "%s %s %s\n", $feed->[0], $feed->[1], $uri;
}
else {
- printf "\%-8s \%-8s \%-8s \%s\n", $feed->[1], $feed->[0], $revision, join(", ", @{$feed->[2]});
+ printf "\%-10s \%-8s \%-8s \%s\n", $feed->[1], $feed->[0], $revision, join(", ", @{$feed->[2]});
}
}
return 0;