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-08-02 07:18:48 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-08-02 07:18:48 +0400
commit7c272c80dd630713b828d586e0387b66af7bc7e0 (patch)
tree1b56d1e46e24cac4c2b96978943eb01826a31ac4 /io_mesh_stl/__init__.py
parentaf88ccbfee8149971096a8af7e9af191548de819 (diff)
pep8 style edits.
Diffstat (limited to 'io_mesh_stl/__init__.py')
-rw-r--r--io_mesh_stl/__init__.py9
1 files changed, 5 insertions, 4 deletions
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 #####
-# <pep8 compliant>
+# <pep8-80 compliant>
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)