diff options
| author | 2018-05-02 07:20:52 +0100 | |
|---|---|---|
| committer | 2018-05-02 07:20:52 +0100 | |
| commit | 11ddb1fca538943b1c80043f72a2e6978d3df1cb (patch) | |
| tree | b27534e1a4e1ac6936e522e4f10843d1de590f1d | |
| parent | Use IRCServer.original_nickname in perform.py as we might not have our "given... (diff) | |
| signature | ||
Remove rickroll
| -rw-r--r-- | modules/youtube.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/modules/youtube.py b/modules/youtube.py index cf2a56f4..96f25689 100644 --- a/modules/youtube.py +++ b/modules/youtube.py @@ -64,8 +64,7 @@ class Module(object): ) if match.group(3) else "00" return "%s (%s) uploaded by %s, %s views%s %s" % ( video_title, video_duration, video_uploader, "{:,}".format( - int(video_views)), video_opinions, #URL_YOUTUBESHORT % video_id - "https://youtu.be/dQw4w9WgXcQ") + int(video_views)), video_opinions, URL_YOUTUBESHORT % video_id) def yt(self, event): video_id = None |
