From ba4fe6b57ad4f272a0685cf0e266ba83e2ac391c Mon Sep 17 00:00:00 2001 From: Olivier Keshavjee Date: Tue, 21 Nov 2017 23:11:08 +0100 Subject: [PATCH] Fixes the organizationName issue in #225. --- manuskript/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manuskript/main.py b/manuskript/main.py index 53918cd..5a7fce4 100644 --- a/manuskript/main.py +++ b/manuskript/main.py @@ -16,9 +16,9 @@ faulthandler.enable() def prepare(tests=False): app = QApplication(sys.argv) - app.setOrganizationName("manuskript"+"_tests" if tests else "") + app.setOrganizationName("manuskript"+("_tests" if tests else "")) app.setOrganizationDomain("www.theologeek.ch") - app.setApplicationName("manuskript"+"_tests" if tests else "") + app.setApplicationName("manuskript"+("_tests" if tests else "")) app.setApplicationVersion(getVersion()) print("Running manuskript version {}.".format(getVersion()))