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:
authorPhilipp Oeser <info@graphics-engineer.com>2014-10-13 17:55:26 +0400
committerPhilipp Oeser <info@graphics-engineer.com>2014-10-13 17:55:26 +0400
commit9edfa1364971d41424644ad9499f80187ebaa553 (patch)
treef4cd71456f1c546bf4b57706e2090557ee885207 /io_export_dxf
parent77c3275cf83478352240740b80739747dca9fe0c (diff)
fix warnings with UI description
Diffstat (limited to 'io_export_dxf')
-rw-r--r--io_export_dxf/operator.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_export_dxf/operator.py b/io_export_dxf/operator.py
index 12d9c9eb..b5d8d089 100644
--- a/io_export_dxf/operator.py
+++ b/io_export_dxf/operator.py
@@ -152,7 +152,7 @@ class DXFExporter(bpy.types.Operator):
items=projectionItems)
onlySelected = BoolProperty(name="Only selected", default=True,
- description="What object will be exported? Only selected / all objects.")
+ description="What object will be exported? Only selected / all objects")
apply_modifiers = BoolProperty(name="Apply modifiers", default=True,
description="Shall be modifiers applied during export?")
@@ -227,7 +227,7 @@ class DXFExporter(bpy.types.Operator):
# description='Set default LINETYPE')
verbose = BoolProperty(name="Verbose", default=False,
- description="Run the exporter in debug mode. Check the console for output.")
+ description="Run the exporter in debug mode. Check the console for output")
def execute(self, context):
filePath = bpy.path.ensure_ext(self.filepath, ".dxf")