From 93d1ba2a7eeacf3a2c666f5ff03d117837652958 Mon Sep 17 00:00:00 2001 From: Leonard de Ruijter Date: Sat, 18 May 2019 13:04:31 +0200 Subject: [PATCH 1/2] Fix overlooked rane of ID to id in synthDriverHandler.LanguageInfo --- source/synthDriverHandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/synthDriverHandler.py b/source/synthDriverHandler.py index 1b13f43dad7..2c3b67f149d 100644 --- a/source/synthDriverHandler.py +++ b/source/synthDriverHandler.py @@ -480,5 +480,5 @@ class LanguageInfo(driverHandler.StringParameterInfo): def __init__(self, id): """Given a language ID (locale name) the description is automatically calculated.""" displayName = languageHandler.getLanguageDescription(id) - super(LanguageInfo,self).__init__(ID, displayName) + super(LanguageInfo,self).__init__(id, displayName) From a9ff1165644f350135b8ce1573418790742faa34 Mon Sep 17 00:00:00 2001 From: Leonard de Ruijter Date: Mon, 20 May 2019 06:55:43 +0200 Subject: [PATCH 2/2] Bump for appveyor