Compare commits

..

No commits in common. "master" and "issue#5" have entirely different histories.

View File

@ -28,15 +28,12 @@ def get(yt_url):
with yt.YoutubeDL(ytdl_options) as ytdl: with yt.YoutubeDL(ytdl_options) as ytdl:
ytdl.download(yt_url) ytdl.download(yt_url)
try: notification.notify(
notification.notify( title = "yt2mp3",
title = "yt2mp3", message = "Download and conversion complete.",
message = "Download and conversion complete.", app_icon = None,
app_icon = None, timeout = 3,
timeout = 3, )
)
except:
print("Notification failed.")