diff options
author | Christian Pointner <equinox@helsinki.at> | 2016-04-30 12:28:31 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2016-04-30 12:28:31 (GMT) |
commit | f502cf1e7d2c433fb11fc47e6f106ef612d43c57 (patch) | |
tree | 4637ab708cfdbfa328b690f2b80df21fce706a05 | |
parent | b2e571277916457e59db76ef99a859640fd0f798 (diff) |
removed duplicate date check
-rwxr-xr-x | utils/rhrd-schedules | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/utils/rhrd-schedules b/utils/rhrd-schedules index aa67b10..b248e4d 100755 --- a/utils/rhrd-schedules +++ b/utils/rhrd-schedules @@ -55,10 +55,6 @@ sub generate # start times matter here. next if ($start->year != $year || $start->month != $month || $start->day != $day); - if($start->year != $year || $start->month != $month || $start->day != $day) { - print "WARNING: skipping entry whith invalid start -> $start: $title ($pvid)\n"; - next; - } if($showid < 0) { print "WARNING: skipping entry whith invalid/unset automation id -> $start: $title ($pvid)\n"; next; |