From 6f28d959f00e517ba5c36e486041f7fdaa329e6d Mon Sep 17 00:00:00 2001 From: James Taylor Date: Thu, 6 Feb 2020 22:17:58 -0800 Subject: Fix FileNotFound error when trying to download search plugin when the working directory is not the directory of the program --- youtube/search.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'youtube') diff --git a/youtube/search.py b/youtube/search.py index 0f6bbc4..34df76f 100644 --- a/youtube/search.py +++ b/youtube/search.py @@ -8,6 +8,7 @@ import base64 import mimetypes from flask import request import flask +import os # Sort: 1 # Upload date: 2 @@ -106,6 +107,6 @@ def get_search_page(): @yt_app.route('/opensearch.xml') def get_search_engine_xml(): - with open("youtube/opensearch.xml", 'rb') as f: + with open(os.path.join(settings.program_directory, 'youtube/opensearch.xml'), 'rb') as f: content = f.read().replace(b'$port_number', str(settings.port_number).encode()) return flask.Response(content, mimetype='application/xml') -- cgit v1.2.3