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:
authorBastien Montagne <montagne29@wanadoo.fr>2011-09-19 18:00:42 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2011-09-19 18:00:42 +0400
commit712e434a5f71fc4afc52e399af917d137c49308b (patch)
tree3b642fa632b07eae5b816827373df92d50360030 /release/scripts/templates
parent1794767171b20c0a3d0d2f69b41cede468ce17b4 (diff)
/release/scripts: Removed final points in UI strings and messages.
Diffstat (limited to 'release/scripts/templates')
-rw-r--r--release/scripts/templates/operator_export.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/templates/operator_export.py b/release/scripts/templates/operator_export.py
index b1d53e6ee0c..3a7040ae2d2 100644
--- a/release/scripts/templates/operator_export.py
+++ b/release/scripts/templates/operator_export.py
@@ -41,7 +41,7 @@ class ExportSomeData(bpy.types.Operator, ExportHelper):
name="Example Enum",
description="Choose between two items",
items=(('OPT_A', "First Option", "Description one"),
- ('OPT_B', "Second Option", "Description two.")),
+ ('OPT_B', "Second Option", "Description two")),
default='OPT_A',
)