summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-03-22 02:28:04 +0700
committerSergey M․ <dstftw@gmail.com>2017-03-22 02:28:04 +0700
commit8e5a7c5e67a8fad446d22a7619cd6a09823a05e5 (patch)
tree236e6b6ded8935df3afb8a037991252761855075
parente1e35d1ac66ab99202e8265ac811906de2aa87dd (diff)
downloadyoutube-dl-8e5a7c5e67a8fad446d22a7619cd6a09823a05e5.tar.gz
youtube-dl-8e5a7c5e67a8fad446d22a7619cd6a09823a05e5.tar.xz
youtube-dl-8e5a7c5e67a8fad446d22a7619cd6a09823a05e5.zip
[pluralsight] Omit module title from video title (closes #12506)
-rw-r--r--youtube_dl/extractor/pluralsight.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/pluralsight.py b/youtube_dl/extractor/pluralsight.py
index e0cbd045e..0c6e036ca 100644
--- a/youtube_dl/extractor/pluralsight.py
+++ b/youtube_dl/extractor/pluralsight.py
@@ -40,7 +40,7 @@ class PluralsightIE(PluralsightBaseIE):
         'info_dict': {
             'id': 'hosting-sql-server-windows-azure-iaas-m7-mgmt-04',
             'ext': 'mp4',
-            'title': 'Management of SQL Server - Demo Monitoring',
+            'title': 'Demo Monitoring',
             'duration': 338,
         },
         'skip': 'Requires pluralsight account credentials',
@@ -187,7 +187,7 @@ class PluralsightIE(PluralsightBaseIE):
         if not clip:
             raise ExtractorError('Unable to resolve clip')
 
-        title = '%s - %s' % (module['title'], clip['title'])
+        title = clip['title']
 
         QUALITIES = {
             'low': {'width': 640, 'height': 480},