diff --git a/youtube_dl/extractor/panopto.py b/youtube_dl/extractor/panopto.py index 0165f292c..2b283dafb 100644 --- a/youtube_dl/extractor/panopto.py +++ b/youtube_dl/extractor/panopto.py @@ -33,7 +33,8 @@ class PanoptoIE(PanoptoBaseIE): _VALID_URL = r'^https?:\/\/(?P[a-z0-9]+)\.hosted\.panopto.com\/Panopto\/Pages\/Viewer\.aspx\?id=(?P[a-f0-9-]+)' - def _get_contribs_str(self, contribs): + @staticmethod + def _get_contribs_str(contribs): s = '' for c in contribs: s += '%s, ' % c['DisplayName']