Browse Source

[compat] Replace deficient ChainMap class in Py3.3 and earlier
* fix version check

dirkf 3 years ago
parent
commit
ed5c44e7b7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      youtube_dl/compat.py

+ 1 - 1
youtube_dl/compat.py

@@ -3005,7 +3005,7 @@ except ImportError:
 try:
 try:
     from collections import ChainMap as compat_collections_chain_map
     from collections import ChainMap as compat_collections_chain_map
     # Py3.3's ChainMap is deficient
     # Py3.3's ChainMap is deficient
-    if sys.version_info <= (3, 3):
+    if sys.version_info < (3, 4):
         raise ImportError
         raise ImportError
 except ImportError:
 except ImportError:
     # Py <= 3.3
     # Py <= 3.3