Skip to content

Commit

Permalink
Fix #172
Browse files Browse the repository at this point in the history
  • Loading branch information
l0drex committed Mar 7, 2023
1 parent 2f2e600 commit 0c8813d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/plugins/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ def test_gnome_availability(command) -> bool:
# or you have to install that extension
process = subprocess.run(
[command[0], 'get', command[2], command[3]],
stdout=subprocess.DEVNULL
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL
)
return process.returncode == 0
except FileNotFoundError:
Expand Down

0 comments on commit 0c8813d

Please sign in to comment.