File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -196,15 +196,16 @@ def headerGet(type, header=None):
196
196
def applyCasing (type , text ):
197
197
global catCasing , subCasing
198
198
if type == "cat" :
199
+ print ("catCasing: " + catCasing )
199
200
if catCasing == "Capitalize" : return text .title ()
200
201
elif catCasing == "UPPER" : return text .upper ()
201
202
elif catCasing == "lower" : return text .lower ()
202
- else : return text
203
- if type == "sub" :
203
+ elif type == "sub" :
204
+ print ( "subCasing: " + subCasing )
204
205
if subCasing == "Capitalize" : return text .title ()
205
206
elif subCasing == "UPPER" : return text .upper ()
206
207
elif subCasing == "lower" : return text .lower ()
207
- else : return text
208
+ return text
208
209
209
210
def casingSet (type , case ):
210
211
global catCasing , subCasing
You can’t perform that action at this time.
0 commit comments