]> jfr.im git - yt-dlp.git/blob - pyinst.py
[ie/youtube] Fix comments extraction (#9775)
[yt-dlp.git] / pyinst.py
1 #!/usr/bin/env python3
2
3 # Allow execution from anywhere
4 import os
5 import sys
6
7 sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
8
9 import warnings
10
11 from bundle.pyinstaller import main
12
13 warnings.warn(DeprecationWarning('`pyinst.py` is deprecated and will be removed in a future version. '
14 'Use `bundle.pyinstaller` instead'))
15
16 if __name__ == '__main__':
17 main()