Skip to content

Commit

Permalink
more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
emilsvennesson committed Oct 5, 2024
1 parent fb15e41 commit 122c61d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/inputstreamhelper/widevine/repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ def cdm_from_repo():

def widevines_available_from_repo():
"""Returns all available Widevine CDM versions and urls from Google's library CDM repository"""
cdm_versions = http_get(config.WIDEVINE_VERSIONS_URL).strip('\n').split('\n')
cdm_versions = http_get(config.WIDEVINE_VERSIONS_URL)
log(0, f"Available Widevine versions from repo: {cdm_versions}")
cdm_versions = cdm_versions.strip('\n').split('\n')
log(0, f"Available Widevine versions from repo: {cdm_versions}")
try:
cdm_os = config.WIDEVINE_OS_MAP[system_os()]
cdm_arch = config.WIDEVINE_ARCH_MAP_REPO[arch()]
Expand Down

0 comments on commit 122c61d

Please sign in to comment.