mirror of
https://github.com/lutris/lutris
synced 2024-11-02 10:19:50 +00:00
Fix flatpak list command
This commit is contained in:
parent
aa53962550
commit
f156d15f73
1 changed files with 1 additions and 1 deletions
|
@ -33,7 +33,7 @@ def get_installed_apps():
|
|||
if not is_installed():
|
||||
return []
|
||||
|
||||
command = get_command() + ["list --columns=name,application,version,branch,arch,origin,installation"]
|
||||
command = get_command() + ["list", "--columns=name,application,version,branch,arch,origin,installation"]
|
||||
package_list = read_process_output(command)
|
||||
packages = []
|
||||
for package in package_list.split("\n"):
|
||||
|
|
Loading…
Reference in a new issue