Skip to content

Commit b3e04a7

Browse files
committed
Don't force lowercase option names in Komodo
1 parent 6f78e56 commit b3e04a7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pylib/editorconfig/ini.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -171,4 +171,5 @@ def _read(self, fp, fpname):
171171
raise e
172172

173173
def optionxform(self, optionstr):
174-
return optionstr.lower()
174+
# KOMODO: Preserve case
175+
return optionstr # .lower()

0 commit comments

Comments
 (0)