From e493c49e1c4f776d9528456b32ab0e7094972e36 Mon Sep 17 00:00:00 2001 From: Subhamoy Biswas Date: Tue, 21 Jan 2025 19:28:32 +0530 Subject: [PATCH] (refactor): updated node installation warning message --- pytubepp/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytubepp/main.py b/pytubepp/main.py index 331387f..d3cb583 100644 --- a/pytubepp/main.py +++ b/pytubepp/main.py @@ -46,7 +46,7 @@ class YouTubeDownloader: if not nodejs_installed(): print("\nWarning: Node.js is not installed or not found in PATH!") print("BotGuard poToken generation will not work properly without Node.js environment") - print("Please install Node.js from https://nodejs.org/en/download\n") + print("Please install Node.js, read https://github.com/neosubhamoy/pytubepp#%EF%B8%8F-installation for instructions\n") if is_valid_url(link): link = is_valid_url(link).group(1)