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:
authorCampbell Barton <ideasman42@gmail.com>2012-05-26 13:45:58 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-26 13:45:58 +0400
commit56a8c5f8a4da28b3e808e28c6875043a573b5d9b (patch)
tree41fc67d450810790d8a7607fe037d0fb70486568 /rigify/ui.py
parent33ad2771cd15e7189f1fde92afd671e9c258a0a7 (diff)
use python3 set syntax
Diffstat (limited to 'rigify/ui.py')
-rw-r--r--rigify/ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rigify/ui.py b/rigify/ui.py
index 33e3c5d4..9b116260 100644
--- a/rigify/ui.py
+++ b/rigify/ui.py
@@ -226,7 +226,7 @@ def rigify_report_exception(operator, exception):
message.reverse() # XXX - stupid! menu's are upside down!
- operator.report(set(['INFO']), '\n'.join(message))
+ operator.report({'INFO'}, '\n'.join(message))
class Generate(bpy.types.Operator):