File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 1- name : why does self-test fail?
1+ name : explore self-test fail
22
33on :
4+ workflow_dispatch : # Allows you to run this workflow manually from the Actions tab
45 # Runs on pushes targeting the default branch
56 # push:
67 # branches-ignore:
910 # pull_request:
1011 # branches: ['develop']
1112
12- # Allows you to run this workflow manually from the Actions tab
13- workflow_dispatch :
13+
1414
1515
1616# Default to bash
Original file line number Diff line number Diff line change @@ -1215,7 +1215,11 @@ def XferConfigIni():
12151215 return
12161216
12171217 # Access values from the configuration file
1218- cfgG = cfg ['GUI settings' ]
1218+ try :
1219+ cfgG = cfg ['GUI settings' ]
1220+ except KeyError :
1221+ cfgG = {}
1222+
12191223 for key in cfgG :
12201224 key = key .lower () # not needed... but in case configparser ever changes
12211225 capKey = capsDict .get (key )
You can’t perform that action at this time.
0 commit comments