ahmedsadman commited on
Commit
946cd32
·
1 Parent(s): 11f86d9

fixed flake8 error #3

Browse files
Files changed (1) hide show
  1. pytube/playlist.py +2 -1
pytube/playlist.py CHANGED
@@ -82,7 +82,8 @@ class Playlist(object):
82
  for link in self.video_urls:
83
  yt = YouTube(link)
84
 
85
- # (ISSUE #206): the try/except is done to prevent the UnicodeEncodeError
 
86
  try:
87
  print("Downloading:", yt.title)
88
  except UnicodeEncodeError:
 
82
  for link in self.video_urls:
83
  yt = YouTube(link)
84
 
85
+ # (ISSUE #206): the try/except is done to prevent
86
+ # the UnicodeEncodeError
87
  try:
88
  print("Downloading:", yt.title)
89
  except UnicodeEncodeError: