# HG changeset patch # User Oliver Maurhart # Date 1403778835 -7200 # Node ID cc8a15da3a13ae5b48b2cd504299ba2847d18bb2 # Parent 973b5888eec63999618bbee20d0424a3a6726bdf some last fixes ... for 0.2.7 diff -r 973b5888eec6 -r cc8a15da3a13 OpenSecurity/bin/opensecurity_client_restful_server.py --- a/OpenSecurity/bin/opensecurity_client_restful_server.py Thu Jun 26 12:14:08 2014 +0200 +++ b/OpenSecurity/bin/opensecurity_client_restful_server.py Thu Jun 26 12:33:55 2014 +0200 @@ -579,7 +579,7 @@ # invoke the user dialog as a subprocess dlg_image = os.path.join(sys.path[0], 'opensecurity_dialog.pyw') - dlg_process_command = [sys.executable, dlg_image, 'notification-critical', 'Error is
Code: {0!s}
{1}'.format(e.code, e.reason)] + dlg_process_command = [sys.executable, dlg_image, 'notification-critical', 'Error is
Code: {0!s}
Reason: {1}
{2}'.format(e.code, e.reason, e.read())] dlg_process = subprocess.Popen(dlg_process_command, shell = False, stdout = subprocess.PIPE) dlg_process.communicate()[0]