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:
Diffstat (limited to 'system_demo_mode')
-rw-r--r--system_demo_mode/__init__.py2
-rw-r--r--system_demo_mode/config.py2
-rw-r--r--system_demo_mode/demo_mode.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/system_demo_mode/__init__.py b/system_demo_mode/__init__.py
index 9af8b217..71870532 100644
--- a/system_demo_mode/__init__.py
+++ b/system_demo_mode/__init__.py
@@ -190,7 +190,7 @@ class DemoModeRun(bpy.types.Operator):
if extern_demo_mode_run():
return {'FINISHED'}
else:
- self.report({'ERROR'}, "Cant load demo.py config, run: File -> Demo Mode (Setup)")
+ self.report({'ERROR'}, "Can't load demo.py config, run: File -> Demo Mode (Setup)")
return {'CANCELLED'}
diff --git a/system_demo_mode/config.py b/system_demo_mode/config.py
index 3c0550ee..5d939959 100644
--- a/system_demo_mode/config.py
+++ b/system_demo_mode/config.py
@@ -40,7 +40,7 @@ def as_string(dirpath, random_order, exit, **kwargs):
"# generated file\n",
"\n",
"# edit the search path so other systems may find the files below\n",
- "# based on name only if the absolute paths cant be found\n",
+ "# based on name only if the absolute paths cannot be found\n",
"# Use '//' for current blend file path.\n",
"\n",
"search_path = %r\n" % dirpath,
diff --git a/system_demo_mode/demo_mode.py b/system_demo_mode/demo_mode.py
index 4def3031..f412869b 100644
--- a/system_demo_mode/demo_mode.py
+++ b/system_demo_mode/demo_mode.py
@@ -523,7 +523,7 @@ def load_config(cfg_name=DEMO_CFG):
if not os.path.exists(filepath_test):
filepath_test = lookup_file(filepath_test) # attempt to get from searchpath
if not os.path.exists(filepath_test):
- print("Cant find %r or %r, skipping!")
+ print("Can't find %r or %r, skipping!")
continue
filecfg["file"] = os.path.normpath(filepath_test)