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:
authorlijenstina <lijenstina@gmail.com>2017-09-04 01:12:19 +0300
committerlijenstina <lijenstina@gmail.com>2017-09-04 01:12:19 +0300
commit9c8805a7af580b3428e305d888634483c5628345 (patch)
treeab8a0accf6983952893956cc405eff48402142d9 /object_cloud_gen.py
parente66713cfad6e9227f85314cc80002f72e1afd0d2 (diff)
Cloud Generator: Fix typo with operator return
Bumped version to 1.0.2 Missed an error with the previous commit Safe to include in release No other functional changes
Diffstat (limited to 'object_cloud_gen.py')
-rw-r--r--object_cloud_gen.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/object_cloud_gen.py b/object_cloud_gen.py
index 1e138cf6..008763fc 100644
--- a/object_cloud_gen.py
+++ b/object_cloud_gen.py
@@ -21,7 +21,7 @@
bl_info = {
"name": "Cloud Generator",
"author": "Nick Keeline(nrk)",
- "version": (1, 0, 1),
+ "version": (1, 0, 2),
"blender": (2, 78, 5),
"location": "Tool Shelf > Create Tab",
"description": "Creates Volumetric Clouds",
@@ -502,7 +502,7 @@ class GenerateCloud(Operator):
if True in space_data.layers_local_view:
self.report({'INFO'},
"Works with Global Perspective modes only. Operation Cancelled")
- return {'CANCELLLED'}
+ return {'CANCELLED'}
# Make variable that is the active object selected by user
active_object = context.active_object