Merge pull request #41 from mweinelt/master
fix regressions in alfred.py
This commit is contained in:
commit
dfccd01b69
|
@ -8,17 +8,15 @@ class Alfred(object):
|
|||
Bindings for the alfred-json utility
|
||||
"""
|
||||
def __init__(self, unix_sockpath=None):
|
||||
if unix_sockpath:
|
||||
if os.path.exists(unix_sockpath):
|
||||
self.unix_sock = unix_sockpath
|
||||
else:
|
||||
if unix_sockpath is not None and not os.path.exists(unix_sockpath):
|
||||
raise RuntimeError('alfred: invalid unix socket path given')
|
||||
|
||||
def _fetch(self, data_type):
|
||||
cmd = ['alfred-json',
|
||||
'-z',
|
||||
'-f', 'json',
|
||||
'-r', data_type]
|
||||
'-r', str(data_type)]
|
||||
if self.unix_sock:
|
||||
cmd.extend(['-s', self.unix_sock])
|
||||
|
||||
|
|
Loading…
Reference in a new issue