Skip to content

Commit 51a327f

Browse files
Fix syntax error in previous commit
1 parent 16016ae commit 51a327f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/inputstreamhelper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ def _extract_cdm_from_img(self):
402402
"""Extract the Widevine CDM binary from the mounted Chrome OS image."""
403403
for root, dirs, files in os.walk(self._mnt_path()):
404404
for filename in files:
405-
if filename == 'libwidevinecdm.so'
405+
if filename == 'libwidevinecdm.so':
406406
shutil.copyfile(os.path.join(root, filename), os.path.join(self._cdm_path(), filename))
407407
return True
408408

0 commit comments

Comments
 (0)