Skip to content

Commit

Permalink
Merge pull request #715 from deuteronomy-works/master
Browse files Browse the repository at this point in the history
Merged
  • Loading branch information
amoh-godwin authored Jan 4, 2025
2 parents 6f03884 + b82d60e commit ec1e469
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyffmpeg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,10 +155,10 @@ def convert(self, input_file, output_file):
if 'Output #0' not in stderr:
lines = stderr.splitlines()
if len(lines) > 0:
self.error = "".join(lines) # instead of lines[-1]
self.error = "".join(lines) # instead of lines[-1]
self.error = "New error info: " + self.error
else:
self.error = "Error but nothing much"
self.error = "Error all: " + str(stderr)

if self.enable_log:
self.logger.error(self.error)
Expand Down

0 comments on commit ec1e469

Please sign in to comment.