Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/plugins/turtle_blocks_plugin.py
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2011-03-03 12:14:05 (GMT)
committer Walter Bender <walter.bender@gmail.com>2011-03-03 12:14:05 (GMT)
commit9d214663ba8823dd93f624595e65a4ab76c3e933 (patch)
tree11d4890e60c0b9f080c8347684dcad75d639bdeb /plugins/turtle_blocks_plugin.py
parentc2e939def27ef50d443ceb4ddbcd9e38bf88ace6 (diff)
naming arguments to make_palette
Diffstat (limited to 'plugins/turtle_blocks_plugin.py')
-rw-r--r--plugins/turtle_blocks_plugin.py23
1 files changed, 14 insertions, 9 deletions
diff --git a/plugins/turtle_blocks_plugin.py b/plugins/turtle_blocks_plugin.py
index ce6f73b..94332d5 100644
--- a/plugins/turtle_blocks_plugin.py
+++ b/plugins/turtle_blocks_plugin.py
@@ -81,20 +81,24 @@ class Turtle_blocks_plugin(Plugin):
# set up Turtle Block palettes
self._flow_palette()
- make_palette('media', ["#A0FF00", "#80A000"],
- _('Palette of media objects'))
+ make_palette('media',
+ colors=["#A0FF00", "#80A000"],
+ help_string=_('Palette of media objects'))
self._media_palette()
- make_palette('sensor', ["#FF6060", "#A06060"],
- _('Palette of sensor blocks'))
+ make_palette('sensor',
+ colors=["#FF6060", "#A06060"],
+ help_string=_('Palette of sensor blocks'))
self._sensor_palette()
- make_palette('extras', ["#FF0000", "#A00000"],
- _('Palette of extra options'))
+ make_palette('extras',
+ colors=["#FF0000", "#A00000"],
+ help_string=_('Palette of extra options'))
self._extras_palette()
- make_palette('portfolio', ["#0606FF", "#0606A0"],
- _('Palette of presentation templates'))
+ make_palette('portfolio',
+ colors=["#0606FF", "#0606A0"],
+ help_string=_('Palette of presentation templates'))
self._portfolio_palette()
def start(self):
@@ -921,7 +925,8 @@ objects'))
description = None
if self.tw.lc.dsobject is not None and \
'description' in self.tw.lc.dsobject.metadata:
- description = self.tw.lc.dsobject.metadata['description']
+ description = self.tw.lc.dsobject.metadata[
+ 'description']
self.tw.lc.insert_desc(mimetype, description)
elif string[0:6] == 'audio_':
self.tw.lc.play_sound()