fixes very minor typo of "True" as "Trur"

This commit is contained in:
Marvin Frick 2015-01-07 15:12:27 +01:00
parent 1700450dd8
commit 755cfa8f29

View File

@ -1329,7 +1329,7 @@ def _param_from_config(key, data):
else:
if isinstance(data, bool):
# convert boolean Trur/False to 'true'/'false'
# convert boolean True/False to 'true'/'false'
param.update({key: str(data).lower()})
else:
param.update({key: data})