aboutsummaryrefslogtreecommitdiffstats
path: root/docs/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 5205b013..94246fe4 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -18,14 +18,14 @@ from sphinx.application import Sphinx
logger = sphinx.util.logging.getLogger(__name__)
# Handle the path not being set correctly in actions.
-sys.path.insert(0, os.path.abspath(".."))
+sys.path.insert(0, Path("..").resolve())
from docs import utils # noqa: E402
# -- Project information -----------------------------------------------------
project = "Pydis Core"
-copyright = "2021, Python Discord"
+copyright = "2021, Python Discord" # noqa: A001
author = "Python Discord"
REPO_LINK = "https://github.com/python-discord/bot-core"