]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/__main__.py
[ie/mlbtv] Fix extraction (#10296)
[yt-dlp.git] / yt_dlp / __main__.py
index c9d275b86334259bb549224d0f76e900a7357ceb..06c392039bd3e5c35c43988793ba80f2174e1bf2 100644 (file)
@@ -1,10 +1,11 @@
 #!/usr/bin/env python3
+
 # Execute with
-# $ python -m yt_dlp
+# $ python3 -m yt_dlp
 
 import sys
 
-if __package__ is None and not hasattr(sys, 'frozen'):
+if __package__ is None and not getattr(sys, 'frozen', False):
     # direct call of __main__.py
     import os.path
     path = os.path.realpath(os.path.abspath(__file__))