diff --git a/io_anim_bvh/__init__.py b/io_anim_bvh/__init__.py
index b06eb58a6a5b9e4ced458eb6f4995e6ba6b4fc59..383d3bb9f9b868590808ae764fee595e1c70d107 100644
--- a/io_anim_bvh/__init__.py
+++ b/io_anim_bvh/__init__.py
@@ -26,8 +26,8 @@ bl_info = {
     "location": "File > Import-Export",
     "description": "Import-Export BVH from armature objects",
     "warning": "",
-    "wiki_url": ("http://wiki.blender.org/index.php/Extensions:2.5/Py/"
-                 "Scripts/Import-Export/MotionCapture_BVH"),
+    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"
+                "Scripts/Import-Export/MotionCapture_BVH",
     "tracker_url": "",
     "support": 'OFFICIAL',
     "category": "Import-Export"}
diff --git a/io_mesh_stl/__init__.py b/io_mesh_stl/__init__.py
index e978801359aee35b7596e9a022e8331802705ed3..a46693210beea105fb0ebf8fafbfd757e0ee22a3 100644
--- a/io_mesh_stl/__init__.py
+++ b/io_mesh_stl/__init__.py
@@ -27,10 +27,10 @@ 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",
+                   "func=detail&aid=22837",
     "support": 'OFFICIAL',
     "category": "Import-Export"}
 
@@ -70,15 +70,17 @@ class ImportSTL(bpy.types.Operator, ImportHelper):
 
     filename_ext = ".stl"
 
-    filter_glob = StringProperty(default="*.stl", options={'HIDDEN'})
-
-    files = CollectionProperty(name="File Path",
-                          description="File path used for importing "
-                                      "the STL file",
-                          type=bpy.types.OperatorFileListElement)
-
-    directory = StringProperty(subtype='DIR_PATH')
-
+    filter_glob = StringProperty(
+            default="*.stl",
+            options={'HIDDEN'},
+            )
+    files = CollectionProperty(
+            name="File Path",
+            type=bpy.types.OperatorFileListElement,
+            )
+    directory = StringProperty(
+            subtype='DIR_PATH',
+            )
     def execute(self, context):
         from . import stl_utils
         from . import blender_utils
@@ -98,7 +100,6 @@ class ImportSTL(bpy.types.Operator, ImportHelper):
         for path in paths:
             objName = bpy.path.display_name(os.path.basename(path))
             tris, pts = stl_utils.read_stl(path)
-
             blender_utils.create_and_link_mesh(objName, tris, pts)
 
         return {'FINISHED'}
diff --git a/io_mesh_uv_layout/__init__.py b/io_mesh_uv_layout/__init__.py
index e7cf81ffd9061c8df06c7c175bad30312181076d..ac650976b4829937e85e9378e5a6a9a687fbb8ae 100644
--- a/io_mesh_uv_layout/__init__.py
+++ b/io_mesh_uv_layout/__init__.py
@@ -27,10 +27,10 @@ bl_info = {
     "location": "Image-Window > UVs > Export UV Layout",
     "description": "Export the UV layout as a 2D graphic",
     "warning": "",
-    "wiki_url": ("http://wiki.blender.org/index.php/Extensions:2.5/Py/"
-                 "Scripts/Import-Export/UV_Layout"),
+    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"
+                "Scripts/Import-Export/UV_Layout",
     "tracker_url": "https://projects.blender.org/tracker/index.php?"
-        "func=detail&aid=22837",
+                   "func=detail&aid=22837",
     "support": 'OFFICIAL',
     "category": "Import-Export"}
 
diff --git a/io_scene_3ds/__init__.py b/io_scene_3ds/__init__.py
index ef3ad111af53b059fbe9904729c5db5770876785..54015cc183e59a1a5c73284f7f1f13f383c4e2b7 100644
--- a/io_scene_3ds/__init__.py
+++ b/io_scene_3ds/__init__.py
@@ -24,11 +24,11 @@ bl_info = {
     "blender": (2, 5, 7),
     "api": 35622,
     "location": "File > Import-Export",
-    "description": ("Import-Export 3DS, meshes, uvs, materials, textures, "
-                    "cameras & lamps"),
+    "description": "Import-Export 3DS, meshes, uvs, materials, textures, "
+                   "cameras & lamps",
     "warning": "",
-    "wiki_url": ("http://wiki.blender.org/index.php/Extensions:2.5/Py/"
-                 "Scripts/Import-Export/Autodesk_3DS"),
+    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"
+                "Scripts/Import-Export/Autodesk_3DS",
     "tracker_url": "",
     "support": 'OFFICIAL',
     "category": "Import-Export"}
diff --git a/io_scene_fbx/__init__.py b/io_scene_fbx/__init__.py
index 724001e50aa46102a51d02b2d1645772c95e9967..30f10c02ca3128ee34493dfdd0c5d54d2b34deae 100644
--- a/io_scene_fbx/__init__.py
+++ b/io_scene_fbx/__init__.py
@@ -24,11 +24,11 @@ bl_info = {
     "blender": (2, 5, 8),
     "api": 38691,
     "location": "File > Import-Export",
-    "description": ("Export FBX meshes, UV's, vertex colors, materials, "
-                    "textures, cameras, lamps and actions"),
+    "description": "Export FBX meshes, UV's, vertex colors, materials, "
+                   "textures, cameras, lamps and actions",
     "warning": "",
-    "wiki_url": ("http://wiki.blender.org/index.php/Extensions:2.5/Py/"
-                 "Scripts/Import-Export/Autodesk_FBX"),
+    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"
+                "Scripts/Import-Export/Autodesk_FBX",
     "tracker_url": "",
     "support": 'OFFICIAL',
     "category": "Import-Export"}
diff --git a/io_scene_map/__init__.py b/io_scene_map/__init__.py
index 77e85d5f39a22942542cbdccdb07c7628ac01b37..695d48f09af91b8f0b1825c88fd377878d380dcb 100644
--- a/io_scene_map/__init__.py
+++ b/io_scene_map/__init__.py
@@ -24,11 +24,11 @@ bl_info = {
     "blender": (2, 5, 7),
     "api": 35622,
     "location": "File > Export",
-    "description": ("Export MAP brushes, nurbs surfaces, "
-                    "lamps and empties as map nodes"),
+    "description": "Export MAP brushes, nurbs surfaces, "
+                   "lamps and empties as map nodes",
     "warning": "",
-    "wiki_url": ("http://wiki.blender.org/index.php/Extensions:2.5/Py/"
-                 "Scripts/Import-Export/Quake_MAP"),
+    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"
+                "Scripts/Import-Export/Quake_MAP",
     "tracker_url": "",
     "support": 'OFFICIAL',
     "category": "Import-Export"}
diff --git a/io_scene_obj/__init__.py b/io_scene_obj/__init__.py
index 20216df30ae3a8f09568374643135d7b3c5effd3..55a11b6bc861889173d07437c07106cf08a69112 100644
--- a/io_scene_obj/__init__.py
+++ b/io_scene_obj/__init__.py
@@ -24,11 +24,11 @@ bl_info = {
     "blender": (2, 5, 8),
     "api": 35622,
     "location": "File > Import-Export",
-    "description": ("Import-Export OBJ, Import OBJ mesh, UV's, "
-                    "materials and textures"),
+    "description": "Import-Export OBJ, Import OBJ mesh, UV's, "
+                   "materials and textures",
     "warning": "",
-    "wiki_url": ("http://wiki.blender.org/index.php/Extensions:2.5/Py/"
-                 "Scripts/Import-Export/Wavefront_OBJ"),
+    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"
+                "Scripts/Import-Export/Wavefront_OBJ",
     "tracker_url": "",
     "support": 'OFFICIAL',
     "category": "Import-Export"}
diff --git a/io_scene_x3d/__init__.py b/io_scene_x3d/__init__.py
index 6e97ce2ea06028ff2a8a7f9327d42866f94f98b0..05c7a6af8ef81c998db58e32d33f326d87243062 100644
--- a/io_scene_x3d/__init__.py
+++ b/io_scene_x3d/__init__.py
@@ -26,8 +26,8 @@ bl_info = {
     "location": "File > Import-Export",
     "description": "Import-Export X3D, Import VRML",
     "warning": "",
-    "wiki_url": ("http://wiki.blender.org/index.php/Extensions:2.5/Py/"
-                 "Scripts/Import-Export/Web3D"),
+    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"
+                "Scripts/Import-Export/Web3D",
     "tracker_url": "",
     "support": 'OFFICIAL',
     "category": "Import-Export"}
diff --git a/io_shape_mdd/__init__.py b/io_shape_mdd/__init__.py
index ff8d7308c80ad81c11b97a5e8a19544bf4a84767..e7eea70a1cc1b1cf9b89dc3bd6deb95eb08c9a5b 100644
--- a/io_shape_mdd/__init__.py
+++ b/io_shape_mdd/__init__.py
@@ -26,8 +26,8 @@ bl_info = {
     "location": "File > Import-Export",
     "description": "Import-Export MDD as mesh shape keys",
     "warning": "",
-    "wiki_url": ("http://wiki.blender.org/index.php/Extensions:2.5/Py/"
-                 "Scripts/Import-Export/NewTek_OBJ"),
+    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"
+                "Scripts/Import-Export/NewTek_OBJ",
     "tracker_url": "",
     "support": 'OFFICIAL',
     "category": "Import-Export"}
diff --git a/object_grease_scatter.py b/object_grease_scatter.py
index 7bacbefd132f034b4546e88e6655991e78125d94..71d06584a30c294490b4214abaa5b69000b853eb 100644
--- a/object_grease_scatter.py
+++ b/object_grease_scatter.py
@@ -27,13 +27,13 @@ bl_info = {
     "blender": (2, 5, 8),
     "api": 36079,
     "location": "3D View, Add Mesh",
-    "description": ("Scatter a group of objects onto the active mesh using "
-                    "the grease pencil lines"),
+    "description": "Scatter a group of objects onto the active mesh using "
+                   "the grease pencil lines",
     "warning": "",
-    "wiki_url": ("http://wiki.blender.org/index.php/Extensions:2.5/Py/"
-                 "Scripts/Object/Grease_Scatter"),
-    "tracker_url": ("https://projects.blender.org/tracker/index.php?"
-                    "func=detail&aid=TODO"),
+    "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.5/Py/"
+                "Scripts/Object/Grease_Scatter",
+    "tracker_url": "https://projects.blender.org/tracker/index.php?"
+                   "func=detail&aid=TODO",
     "support": 'OFFICIAL',
     "category": "Object"}