ibus-daemon detection is broken

Bug #1788886 reported by Laurent Bigonville
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
Terminator
New
Undecided
Unassigned

Bug Description

Hi,

It seems that the code to detect if ibus is running is broken

It currently reads:

ibus_running = [p for p in psutil.process_iter() if p.name == 'ibus-daemon' and p.username == username]

But username and name are functions/methods not variables so it should read:

ibus_running = [p for p in psutil.process_iter() if p.name() == 'ibus-daemon' and p.username() == username]

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.