Fixes issue when Borg binary is missing #258 (#259)

This commit is contained in:
Manuel Riel 2019-04-19 13:21:44 +08:00 committed by GitHub
parent 2703a4d16d
commit 4f799ed63f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -104,7 +104,6 @@ class VortaApp(QtSingleApplication):
def set_borg_details_action(self): def set_borg_details_action(self):
params = BorgVersionThread.prepare() params = BorgVersionThread.prepare()
if not params['ok']: if not params['ok']:
self._set_status(params['message'])
return return
thread = BorgVersionThread(params['cmd'], params, parent=self) thread = BorgVersionThread(params['cmd'], params, parent=self)
thread.result.connect(self.set_borg_details_result) thread.result.connect(self.set_borg_details_result)