diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-05-19 12:56:09 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-05-19 12:56:09 (GMT) |
commit | 10e2d89361988bd25a7085a34a874c8bf8ce98b5 (patch) | |
tree | 42778c8028ae6db0ba75f5b7681ca90c19c25361 /utils/rhrd-show | |
parent | 7b7dd1ff6c06820ea84c7c03f1dbe6d0d57961cc (diff) |
add group name to show info
Diffstat (limited to 'utils/rhrd-show')
-rwxr-xr-x | utils/rhrd-show | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/rhrd-show b/utils/rhrd-show index 731b627..0c81c72 100755 --- a/utils/rhrd-show +++ b/utils/rhrd-show @@ -65,7 +65,7 @@ sub show } $show->{'DOW'} = 7 if $show->{'DOW'} == 0; print $show->{'TITLE'} . ": " . join(", ", $show->{'RHYTHM'}, Date::Calc::Day_of_Week_to_Text($show->{'DOW'}), $show->{'STARTTIME'}, ($show->{'LEN'} . " min")) . "\n"; - print " carts(" . scalar(@carts) . "): " . join(", ", @carts) . " \n"; + print " group: " . $show->{'GROUP'} . ", carts(" . scalar(@carts) . "): " . join(", ", @carts) . " \n"; return 0; } |