]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/__main__.py
[ie/tenplay] Add support for seasons (#7939)
[yt-dlp.git] / yt_dlp / __main__.py
index c9f41473db70e31b426a35c14ca622ec7ecaa782..78701df8d3b21aef0e365576de23046afe3cb9ee 100644 (file)
@@ -1,13 +1,11 @@
 #!/usr/bin/env python3
-from __future__ import unicode_literals
 
 # Execute with
-# $ python yt_dlp/__main__.py (2.6+)
-# $ python -m yt_dlp          (2.7+)
+# $ python -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__))