We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f4953a commit ca5fe67Copy full SHA for ca5fe67
modules/processing/analysisinfo.py
@@ -73,8 +73,8 @@ def get_package(self):
73
'INFO: analysis package selected: "',
74
'INFO: Automatically selected analysis package "',
75
):
76
- if marker in analysis_log:
77
- idx = analysis_log.index(marker)
+ idx = analysis_log.find(marker)
+ if idx != -1:
78
package = analysis_log[idx + len(marker) :].split('"', 1)[0]
79
break
80
return package
0 commit comments