Skip to content

Commit 331ec82

Browse files
committed
Fix getting version
Fixes #3600
1 parent a8651e3 commit 331ec82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Browser/entry/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ def _log_install_dir(error_msg=True):
230230

231231
def get_rf_version():
232232
process = subprocess.run(
233-
[sys.executable, "-m", "robot", "--version"], capture_output=True, check=True
233+
[sys.executable, "-m", "robot", "--version"], capture_output=True, check=False
234234
)
235235
return process.stdout.decode("utf-8").split(" ")[2]
236236

0 commit comments

Comments
 (0)