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:
authorBrendon Murphy <meta.androcto1@gmail.com>2011-10-10 13:22:50 +0400
committerBrendon Murphy <meta.androcto1@gmail.com>2011-10-10 13:22:50 +0400
commit3e0c882f06b73726ff7c764ca9c78c010306a9eb (patch)
tree392068179fa611a8d30d6b7662e5dbd7e99f821e /add_mesh_extra_objects/add_mesh_gemstones.py
parent4944da5e4b891895dcba7ee8beb97f56e954e642 (diff)
removing version info & general clean up
version info is now located on the wiki page for the script/s
Diffstat (limited to 'add_mesh_extra_objects/add_mesh_gemstones.py')
-rw-r--r--add_mesh_extra_objects/add_mesh_gemstones.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/add_mesh_extra_objects/add_mesh_gemstones.py b/add_mesh_extra_objects/add_mesh_gemstones.py
index 481ca8b5..63c7b6ef 100644
--- a/add_mesh_extra_objects/add_mesh_gemstones.py
+++ b/add_mesh_extra_objects/add_mesh_gemstones.py
@@ -15,7 +15,7 @@
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####
-"""
+'''
bl_info = {
"name": "Gemstones",
"author": "Pontiac, Fourmadmen, Dreampainter",
@@ -30,7 +30,7 @@ bl_info = {
"tracker_url": "https://projects.blender.org/tracker/index.php?"\
"func=detail&aid=21432",
"category": "Add Mesh"}
-"""
+'''
import bpy
from mathutils import *
from math import *
@@ -328,4 +328,3 @@ class AddGem(bpy.types.Operator):
obj = create_mesh_object(context, verts, [], faces, "Gem")
return {'FINISHED'}
-