Skip to content

Commit b3c8359

Browse files
committed
Merge pull request #1466 from robotframework/issue/1464
Fix false reporting of missing RF installation
2 parents 699e9a5 + 9008f5b commit b3c8359

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/robotide/contrib/testrunner/runprofiles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def _create_error_log_message(self, error, returncode):
184184
# bash and zsh use return code 127 and the text `command not found`
185185
# In Windows, the error is `The system cannot file the file specified`
186186
if 'not found' in error or returncode is 127 or \
187-
'system cannot find the file specified':
187+
'system cannot find the file specified' in error:
188188
return pluginapi.RideLogMessage(
189189
RF_INSTALLATION_NOT_FOUND, notify_user=True)
190190
return None

0 commit comments

Comments
 (0)