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:
authorCampbell Barton <ideasman42@gmail.com>2011-07-25 13:18:38 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-07-25 13:18:38 +0400
commite7e051eb5d8e596bdbda9e3a02572a6db152e76e (patch)
tree3bfb65bb16b4b26912bd3359b623bcbfc3cc2334 /io_mesh_ply
parentd71455d4c1534a1949f6fb0e6ab0fcb1ceb7c2f8 (diff)
fix for some errors with recent commits
Diffstat (limited to 'io_mesh_ply')
-rw-r--r--io_mesh_ply/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_mesh_ply/__init__.py b/io_mesh_ply/__init__.py
index 50edb885..17449a4a 100644
--- a/io_mesh_ply/__init__.py
+++ b/io_mesh_ply/__init__.py
@@ -114,8 +114,8 @@ class ExportPLY(bpy.types.Operator, ExportHelper):
filepath = self.filepath
filepath = bpy.path.ensure_ext(filepath, self.filename_ext)
from . import export_ply
- keywords = **self.as_keywords(ignore=("check_existing", "filter_glob"))
- return export_ply.save(self, context, keywords)
+ keywords = self.as_keywords(ignore=("check_existing", "filter_glob"))
+ return export_ply.save(self, context, **keywords)
def draw(self, context):
layout = self.layout