We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fb8c26 commit 0df02ffCopy full SHA for 0df02ff
backend.py
@@ -196,12 +196,12 @@ def headerGet(type, header=None):
196
def applyCasing(type, text):
197
global catCasing, subCasing
198
if type == "cat":
199
- if catCasing == "Capitalize": return text.capitalize()
+ if catCasing == "Capitalize": return text.title()
200
elif catCasing == "UPPER": return text.upper()
201
elif catCasing == "lower": return text.lower()
202
else: return text
203
if type == "sub":
204
- if subCasing == "Capitalize": return text.capitalize()
+ if subCasing == "Capitalize": return text.title()
205
elif subCasing == "UPPER": return text.upper()
206
elif subCasing == "lower": return text.lower()
207
0 commit comments