Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-10-01 21:13:26 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-10-01 21:13:26 +0300
commited161459d14a31fd237cd1f65a7070113ae3300f (patch)
tree375a2763bf4fa7135aa4e64c92fccaaa335a4034 /io_scene_obj
parent50c493fb22869e0e08936c4b7a44624887b1de58 (diff)
Fix typos in source comments and descriptions
Patch contributed by luzpaz. Differential Revision: https://developer.blender.org/D5800
Diffstat (limited to 'io_scene_obj')
-rw-r--r--io_scene_obj/import_obj.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_scene_obj/import_obj.py b/io_scene_obj/import_obj.py
index bc0bb199..f90528f9 100644
--- a/io_scene_obj/import_obj.py
+++ b/io_scene_obj/import_obj.py
@@ -62,7 +62,7 @@ def filenames_group_by_ext(line, ext):
"""
Splits material libraries supporting spaces, so:
b'foo bar.mtl baz spam.MTL' -> (b'foo bar.mtl', b'baz spam.MTL')
- Also handle " chars (some softwares use those to protect filenames with spaces, see T67266... sic).
+ Also handle " chars (some software use those to protect filenames with spaces, see T67266... sic).
"""
# Note that we assume that if there are some " in that line,
# then all filenames are properly enclosed within those...
@@ -93,7 +93,7 @@ def obj_image_load(context_imagepath_map, line, DIR, recursive, relpath):
But we try all space-separated items from current line when file is not found with last one
(users keep generating/using image files with spaces in a format that does not support them, sigh...)
Also tries to replace '_' with ' ' for Max's exporter replaces spaces with underscores.
- Also handle " chars (some softwares use those to protect filenames with spaces, see T67266... sic).
+ Also handle " chars (some software use those to protect filenames with spaces, see T67266... sic).
"""
filepath_parts = line.split(b' ')