Skip to content

Commit

Permalink
delete '!'
Browse files Browse the repository at this point in the history
  • Loading branch information
awidesky committed Jul 23, 2021
1 parent 3145c70 commit f075d85
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public static boolean checkYoutubedl() {

if (!checkYoutubedlPath(youtubedlpath + "youtube-dl")) {

GUI.error("Error!", "youtube-dl does not exist in\n" + youtubedlpath + "\nor system %PATH%!", null);
GUI.error("Error!", "youtube-dl does not exist in\n" + youtubedlpath + "\nor system %PATH%", null);
if (GUI.confirm("youtube-dl does not exist!", "Move to download page of youtube-dl?")) Main.webBrowse("http://ytdl-org.github.io/youtube-dl/download.html");
return false;

Expand All @@ -92,7 +92,7 @@ public static boolean checkYoutubedl() {
}

Main.log("[init] projectpath = " + projectpath);
Main.log("[init] youtubedlpath = " + (youtubedlpath.equals("") ? "system %path%" : youtubedlpath));
Main.log("[init] youtubedlpath = " + (youtubedlpath.equals("") ? "system %PATH%" : youtubedlpath));
Main.log("\n");

return true;
Expand Down Expand Up @@ -127,7 +127,7 @@ public static boolean checkFfmpeg() {

} catch (Exception e) {

GUI.error("Error!", "ffmpeg does not exist in\n" + youtubedlpath + "\nor system %PATH%!", null);
GUI.error("Error!", "ffmpeg does not exist in\n" + youtubedlpath + "\nor system %PATH%", null);
if (GUI.confirm("ffmpeg does not exist!", "Move to download page of ffmpeg?")) Main.webBrowse("https://ffmpeg.org/download.html");
return false;

Expand Down

0 comments on commit f075d85

Please sign in to comment.