diff options
Diffstat (limited to 'src/leap/bitmask/vpn/privilege.py')
-rw-r--r-- | src/leap/bitmask/vpn/privilege.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/leap/bitmask/vpn/privilege.py b/src/leap/bitmask/vpn/privilege.py index c7cf1199..3fe693e1 100644 --- a/src/leap/bitmask/vpn/privilege.py +++ b/src/leap/bitmask/vpn/privilege.py @@ -61,9 +61,11 @@ def _helper_installer(action): cmd = "%s %s" % (binary_path, cmd) if os.getuid() != 0: cmd = 'pkexec ' + cmd - retcode, _ = commands.getstatusoutput(cmd) + retcode, output = commands.getstatusoutput(cmd) if retcode != 0: - raise Exception('Could not uninstall helpers') + log.error('Error installing/uninstalling helpers: %s' % output) + log.error('Command was: %s' % cmd) + raise Exception('Could not install/install helpers') else: raise Exception('No install mechanism for this platform') |