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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2011-08-02 21:00:44 +0400
committerKent Mein <mein@cs.umn.edu>2011-08-02 21:00:44 +0400
commit9026dc6ee4b16f9a9db73eee09f2f397012268d2 (patch)
tree9dd5530519d175fa6d32f01c1901f02748771b11 /release/scripts/modules/bpy
parent222190c618b74e0d2a9a2f5f8aded6544b6bef0b (diff)
Fixed a few small typos.
Kent
Diffstat (limited to 'release/scripts/modules/bpy')
-rw-r--r--release/scripts/modules/bpy/path.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/modules/bpy/path.py b/release/scripts/modules/bpy/path.py
index a01745fec0a..284fef97795 100644
--- a/release/scripts/modules/bpy/path.py
+++ b/release/scripts/modules/bpy/path.py
@@ -136,7 +136,7 @@ def display_name(name):
def display_name_from_filepath(name):
"""
- Returns the path stripped of directort and extension,
+ Returns the path stripped of directory and extension,
ensured to be utf8 compatible.
"""
name = _os.path.splitext(basename(name))[0]
@@ -204,7 +204,7 @@ def resolve_ncase(path):
def ensure_ext(filepath, ext, case_sensitive=False):
"""
- Return the path with the extension added its its not alredy set.
+ Return the path with the extension added if it is not already set.
:arg ext: The extension to check for.
:type ext: string