diff options
author | MrOctopus <shock.game@hotmail.com> | 2022-11-11 02:49:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-11 07:19:24 +0530 |
commit | 17fc3dc48af968e28c23197ed06542fdb47aba2b (patch) | |
tree | f0cf3623f21ce704c3eb5e894a70b518cbc31e31 /yt_dlp/utils.py | |
parent | 3f5c216969165c4a0583a4795e4d15325dc009d4 (diff) | |
download | hypervideo-pre-17fc3dc48af968e28c23197ed06542fdb47aba2b.tar.lz hypervideo-pre-17fc3dc48af968e28c23197ed06542fdb47aba2b.tar.xz hypervideo-pre-17fc3dc48af968e28c23197ed06542fdb47aba2b.zip |
[build] Create armv7l and aarch64 releases (#5449)
Closes #5436
Authored by: MrOctopus, pukkandan
Diffstat (limited to 'yt_dlp/utils.py')
-rw-r--r-- | yt_dlp/utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/yt_dlp/utils.py b/yt_dlp/utils.py index b7e7cb7d7..4c44f4845 100644 --- a/yt_dlp/utils.py +++ b/yt_dlp/utils.py @@ -2006,9 +2006,10 @@ def system_identifier(): with contextlib.suppress(OSError): # We may not have access to the executable libc_ver = platform.libc_ver() - return 'Python %s (%s %s) - %s (%s%s)' % ( + return 'Python %s (%s %s %s) - %s (%s%s)' % ( platform.python_version(), python_implementation, + platform.machine(), platform.architecture()[0], platform.platform(), ssl.OPENSSL_VERSION, |