From 7c272c80dd630713b828d586e0387b66af7bc7e0 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 2 Aug 2011 03:18:48 +0000 Subject: pep8 style edits. --- io_mesh_stl/__init__.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'io_mesh_stl') diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py index 48c37af4..e9788013 100644 --- a/io_mesh_stl/__init__.py +++ b/io_mesh_stl/__init__.py @@ -16,7 +16,7 @@ # # ##### END GPL LICENSE BLOCK ##### -# +# bl_info = { "name": "STL format", @@ -27,8 +27,8 @@ bl_info = { "location": "File > Import-Export > Stl", "description": "Import-Export STL files", "warning": "", - "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"\ - "Scripts/Import-Export/STL", + "wiki_url": ("http://wiki.blender.org/index.php/Extensions:2.5/Py/" + "Scripts/Import-Export/STL"), "tracker_url": "https://projects.blender.org/tracker/index.php?" "func=detail&aid=22837", "support": 'OFFICIAL', @@ -83,7 +83,8 @@ class ImportSTL(bpy.types.Operator, ImportHelper): from . import stl_utils from . import blender_utils - paths = [os.path.join(self.directory, name.name) for name in self.files] + paths = [os.path.join(self.directory, name.name) + for name in self.files] if not paths: paths.append(self.filepath) -- cgit v1.2.3