Skip to content
Snippets Groups Projects
Commit 73bd6501 authored by nkour's avatar nkour
Browse files

[paladine] make D-Bus version check less strict

parent fdac5a43
No related branches found
No related tags found
No related merge requests found
......@@ -215,7 +215,7 @@ def init_connection(self):
except:
send_error(_('Session bus is not available.'))
if _version[1] >= 30 and _version[1] <= 42:
if _version[1] >= 30:
obj = self.sbus.get_object(SERVICE, OBJ_PATH)
interface = dbus.Interface(obj, INTERFACE)
elif _version[1] < 30:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment