[ie/Qub] Fix extractor (#7019)
[yt-dlp3.git] / pyinst.py
blob4a8ed2d3497c15b61bb1a9702f62a3c545f08a4d
1 #!/usr/bin/env python3
3 # Allow execution from anywhere
4 import os
5 import sys
7 sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
9 import warnings
11 from bundle.pyinstaller import main
13 warnings.warn(DeprecationWarning('`pyinst.py` is deprecated and will be removed in a future version. '
14 'Use `bundle.pyinstaller` instead'))
16 if __name__ == '__main__':
17 main()