Skip to content

Commit

Permalink
Fix overlooked rename of ID to id in synthDriverHandler.LanguageInfo …
Browse files Browse the repository at this point in the history
…(PR #9587)

* Fix overlooked rename of ID to id in synthDriverHandler.LanguageInfo
* Original PR #8214
  • Loading branch information
LeonarddeR authored and feerrenrut committed May 20, 2019
1 parent 4c62b5f commit ba1c46c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/synthDriverHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit ba1c46c

Please sign in to comment.