From 89eafeaa10e8aeca96aaead32ee3959c557dde2f Mon Sep 17 00:00:00 2001 From: Kevo Date: Sun, 27 Feb 2022 08:50:47 +0100 Subject: [PATCH] Fix README path --- piped_api/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piped_api/__init__.py b/piped_api/__init__.py index ca3722d..c045c46 100644 --- a/piped_api/__init__.py +++ b/piped_api/__init__.py @@ -8,7 +8,7 @@ from .models.comments import Comments # For pdoc: -README_PATH = Path(__file__).parent.absolute() / Path('README.md') +README_PATH = Path(__file__).parent.parent.absolute() / Path('README.md') try: with open(README_PATH, 'r', encoding="UTF-8") as readme: __readme__ = readme.read()