]> jfr.im git - yt-dlp.git/blobdiff - yt_dlp/utils.py
[build] Create armv7l and aarch64 releases (#5449)
[yt-dlp.git] / yt_dlp / utils.py
index b7e7cb7d70ddd473b528b472e6714d2edc92630d..4c44f48450404a336b87930c126e8f19420a03cc 100644 (file)
@@ -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,