Merge branch 'blender-v2.82-release'

This commit is contained in:
mano-wii
2020-01-27 14:17:51 -03:00
6 changed files with 33 additions and 3 deletions

View File

@@ -486,7 +486,10 @@ def is_path_builtin(path):
):
return True
except FileNotFoundError:
#The path we tried to look up doesn't exist
# The path we tried to look up doesn't exist.
pass
except ValueError:
# Happens on Windows when paths don't have the same drive.
pass
return False