diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-07-28 16:50:08 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-07-28 16:50:08 (GMT) |
commit | b865b96be37a6a48a4618b5bc24dbea3c6bfe311 (patch) | |
tree | c78506131e89665a80b142931d1a45760365e761 /utils | |
parent | 990e9ce17301895110e6d74546c084f772b6ab9f (diff) |
implemented music pool info
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/rhrd-pool | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/rhrd-pool b/utils/rhrd-pool index 6152d92..69bc702 100755 --- a/utils/rhrd-pool +++ b/utils/rhrd-pool @@ -58,8 +58,8 @@ sub show print STDERR "$errorstring\n"; return 1; } - print $pool->{'TITLE'} . "(" . $pool->{'NUM'} . "):\n"; - print " group: " . $pool->{'GROUP'} . ", <...cart info...>\n"; # TODO print info about cart usage + print $pool->{'TITLE'} . " (" . $pool->{'SHORTNAME'} . "):\n"; + print " group: " . $pool->{'GROUP'} . ", carts: " . $pool->{'LOW_CART'} . "-" . $pool->{'HIGH_CART'} . "\n"; # TODO print info about cart usage return 0; } |