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 'io_export_dxf/operator.py')
-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")