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 9edc216 commit 3c5c871Copy full SHA for 3c5c871
backend.py
@@ -196,12 +196,10 @@ def headerGet(type, header=None):
196
def applyCasing(type, text):
197
global catCasing, subCasing
198
if type == "cat":
199
- print("catCasing: "+ catCasing)
200
if catCasing == "Capitalize": return text.title()
201
elif catCasing == "UPPER": return text.upper()
202
elif catCasing == "lower": return text.lower()
203
elif type == "sub":
204
- print("subCasing: "+ subCasing)
205
if subCasing == "Capitalize": return text.title()
206
elif subCasing == "UPPER": return text.upper()
207
elif subCasing == "lower": return text.lower()
0 commit comments