[Bf-extensions-cvs] [9c8805a7] master: Cloud Generator: Fix typo with operator return

lijenstina noreply at git.blender.org
Mon Sep 4 00:13:11 CEST 2017


Commit: 9c8805a7af580b3428e305d888634483c5628345
Author: lijenstina
Date:   Mon Sep 4 00:12:19 2017 +0200
Branches: master
https://developer.blender.org/rBA9c8805a7af580b3428e305d888634483c5628345

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

===================================================================

M	object_cloud_gen.py

===================================================================

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



More information about the Bf-extensions-cvs mailing list