add shell=True to lsmod commnad

Fixes #740

Using shell=True is fine here because the shell command doesn't take in any user input
This commit is contained in:
shadeyg56 2024-07-29 15:01:00 -05:00 committed by GitHub
parent c7bab0e36f
commit a14d06ce94
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ from auto_cpufreq.battery_scripts.ideapad_acpi import ideapad_acpi_print_thresho
from auto_cpufreq.battery_scripts.ideapad_laptop import ideapad_laptop_print_thresholds, ideapad_laptop_setup
from auto_cpufreq.battery_scripts.thinkpad import thinkpad_print_thresholds, thinkpad_setup
def lsmod(module): return module in run(['lsmod'], stdout=PIPE, stderr=PIPE, text=True).stdout
def lsmod(module): return module in run(['lsmod'], stdout=PIPE, stderr=PIPE, text=True, shell=True).stdout
def battery_get_thresholds():
if lsmod("ideapad_acpi"): ideapad_acpi_print_thresholds()