Skip to content

Commit

Permalink
fix small typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Tucker Osman committed Feb 2, 2021
1 parent b82ef4b commit 5f71ec5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions TranscodeBot.rb
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ def process_file(input_filename)
correct_permissions output_file
intermediate_file.delete
# input_file.delete if ENV["DELETE_SOURCE"]
$logger.info "transcoding done, took #{Time.now - start_time} seconds, #{queue.size} items remaining"
$logger.info "transcoding done, took #{Time.now - start_time} seconds, #{$queue.size} items remaining"
else
$logger.error "transcode failed, took #{Time.now - start_time} seconds, #{queue.size} items remaining"
$logger.error "transcode failed, took #{Time.now - start_time} seconds, #{$queue.size} items remaining"
end
else
$logger.info "not passing through and not on the list of transcodable media. skipping."
Expand Down

0 comments on commit 5f71ec5

Please sign in to comment.