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
2
2
3
3
on :
4
+ workflow_dispatch : # Allows you to run this workflow manually from the Actions tab
4
5
# Runs on pushes targeting the default branch
5
6
# push:
6
7
# branches-ignore:
9
10
# pull_request:
10
11
# branches: ['develop']
11
12
12
- # Allows you to run this workflow manually from the Actions tab
13
- workflow_dispatch :
13
+
14
14
15
15
16
16
# Default to bash
Original file line number Diff line number Diff line change @@ -1215,7 +1215,11 @@ def XferConfigIni():
1215
1215
return
1216
1216
1217
1217
# Access values from the configuration file
1218
- cfgG = cfg ['GUI settings' ]
1218
+ try :
1219
+ cfgG = cfg ['GUI settings' ]
1220
+ except KeyError :
1221
+ cfgG = {}
1222
+
1219
1223
for key in cfgG :
1220
1224
key = key .lower () # not needed... but in case configparser ever changes
1221
1225
capKey = capsDict .get (key )
You can’t perform that action at this time.
0 commit comments