Skip to content

Commit

Permalink
hide console popup in no-console mode (now without bugs, hopefully)
Browse files Browse the repository at this point in the history
  • Loading branch information
solaluset committed Dec 29, 2022
1 parent b410e8e commit acf5c28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion musicbot/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

def check_dependencies():
try:
check_call(["ffmpeg", "--help"], stdout=DEVNULL, stderr=DEVNULL)
check_call("ffmpeg --help", stdout=DEVNULL, stderr=DEVNULL, shell=True)
except Exception as e:
if sys.platform == "win32":
download_ffmpeg()
Expand Down

0 comments on commit acf5c28

Please sign in to comment.