Browse Source

Update _get_urls() method

doc-issue-template
MrS0m30n3 8 years ago
parent
commit
159d6845da
1 changed files with 1 additions and 1 deletions
  1. 2
      youtube_dl_gui/mainframe.py

2
youtube_dl_gui/mainframe.py

@ -613,7 +613,7 @@ class MainFrame(wx.Frame):
def _get_urls(self):
"""Returns urls list. """
return self._url_list.GetValue().split('\n')
return [line for line in self._url_list.GetValue().split('\n') if line]
def _start_download(self):
"""Handles pre-download tasks & starts the download process. """

Loading…
Cancel
Save