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
committerBastien Montagne <montagne29@wanadoo.fr>2017-09-04 16:12:58 +0300
commita214dbe4738e24fd6e4ede2507603ccc6c66c527 (patch)
tree9e83a6f9677ae2bba45abe6c7a12883266104897
parent33e1ceb4c170a6cb8bdc5a2e26f56e0c56f988d7 (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
-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