🐛 fix empty ue folder bug

This commit is contained in:
Ondrej Samohel 2022-12-14 16:34:40 +01:00
parent 4d0e818067
commit 4d20f025f6
No known key found for this signature in database
GPG key ID: 02376E18990A97C6

View file

@ -50,7 +50,10 @@ def get_engine_versions(env=None):
# environment variable not set
pass
except OSError:
# specified directory doesn't exists
# specified directory doesn't exist
pass
except StopIteration:
# specified directory doesn't exist
pass
# if we've got something, terminate auto-detection process