Opened 14 years ago
Closed 14 years ago
#2922 closed patch (fixed)
Extra semicolon in nuvexport/transcode/VCD.pm
Reported by: | Robert Kulagowski | Owned by: | xris |
---|---|---|---|
Priority: | minor | Milestone: | 0.21 |
Component: | perl / nuvexport | Version: | head |
Severity: | medium | Keywords: | |
Cc: | Ticket locked: | no |
Description
Index: mythextras/nuvexport/export/transcode/VCD.pm =================================================================== --- mythextras/nuvexport/export/transcode/VCD.pm (revision 12535) +++ mythextras/nuvexport/export/transcode/VCD.pm (working copy) @@ -103,7 +103,7 @@ } # Multiplex the streams my $command = "$NICE mplex -f 1 -C" - .' -o '.shell_escape($self->get_outfile($episode, $split_file ? '.%d.mpg' : '.mpg')); + .' -o '.shell_escape($self->get_outfile($episode, $split_file ? '.%d.mpg' : '.mpg')) .' '.shell_escape($self->get_outfile($episode, ".$$.m1v")) .' '.shell_escape($self->get_outfile($episode, ".$$.mpa")); system($command);
Note: See
TracTickets for help on using
tickets.
(In [12567]) Removes extra semicolon. Closes #2922.