Merge pull request #185 from phidebian/phi-rem-conn

Exit remotinator with an explicit error message when terminator is needed but not running
This commit is contained in:
Matt Rose 2020-08-19 15:14:27 -04:00 committed by GitHub
commit 527a8df76c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 1 deletions

View File

@ -2,6 +2,7 @@
# GPL v2 only
"""ipc.py - DBus server and API calls"""
import sys
import hashlib
from gi.repository import Gdk
import dbus.service
@ -194,7 +195,14 @@ def with_proxy(func):
dbg('dbus client call: %s' % func.__name__)
def _exec(*args, **argd):
bus = dbus.SessionBus()
proxy = bus.get_object(BUS_NAME, BUS_PATH)
try:
proxy = bus.get_object(BUS_NAME, BUS_PATH)
except dbus.DBusException as e:
sys.exit(
"Remotinator can't connect to terminator. " +
"May be terminator is not running.")
func(proxy, *args, **argd)
return _exec