Skip to content

Commit 163cc6c

Browse files
check_for_drm is private
1 parent 7ed6e6c commit 163cc6c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/inputstreamhelper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ def _supports_hls(self):
237237
self._log('HLS is not supported on {0} version {1}'.format(self._inputstream_addon), self._inputstream_version())
238238
return False
239239

240-
def check_for_drm(self):
240+
def _check_for_drm(self):
241241
"""Main function for ensuring that specified DRM system is installed and available."""
242242
if self.drm:
243243
if self.drm == 'widevine':
@@ -273,4 +273,4 @@ def check_inputstream(self):
273273
return self._supports_hls()
274274
else:
275275
self._log('{0} is installed and enabled.'.format(self._inputstream_addon))
276-
return self.check_for_drm()
276+
return self._check_for_drm()

0 commit comments

Comments
 (0)