diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-04-12 05:31:54 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-04-12 05:32:52 +0530 |
commit | e5a998f3684e7c56f9cf1c07c4e176e891d96509 (patch) | |
tree | 2db9c362fc168889debe84903a5e4dbabdb742cf /devscripts/fish-completion.py | |
parent | f82711587cee043cb2496fe180b5cc0e07c06eda (diff) | |
download | hypervideo-pre-e5a998f3684e7c56f9cf1c07c4e176e891d96509.tar.lz hypervideo-pre-e5a998f3684e7c56f9cf1c07c4e176e891d96509.tar.xz hypervideo-pre-e5a998f3684e7c56f9cf1c07c4e176e891d96509.zip |
[cleanup] Misc cleanup (#2173)
Authored by: fstirlitz, pukkandan
Diffstat (limited to 'devscripts/fish-completion.py')
-rwxr-xr-x | devscripts/fish-completion.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devscripts/fish-completion.py b/devscripts/fish-completion.py index c318b69e4..dcb1d6582 100755 --- a/devscripts/fish-completion.py +++ b/devscripts/fish-completion.py @@ -2,9 +2,9 @@ import optparse import os import sys -from os.path import dirname as dirn -sys.path.insert(0, dirn(dirn(os.path.abspath(__file__)))) +sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) + import yt_dlp from yt_dlp.utils import shell_quote |