From 85ad972ca829be5bb94ca96567d62df1d95264db Mon Sep 17 00:00:00 2001 From: Brannon King Date: Fri, 31 Jan 2020 15:27:32 -0700 Subject: [PATCH] return string instead of path object for compatibility with hachoir --- lbry/file_analysis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/file_analysis.py b/lbry/file_analysis.py index 1e94d6da8..5f837c532 100644 --- a/lbry/file_analysis.py +++ b/lbry/file_analysis.py @@ -335,4 +335,4 @@ class VideoFileAnalyzer: # TODO: delete partial output file here if it exists? return file_path - return output + return str(output)