From 5510db5c0543c072b41b858ce48e15f7b14ad1b1 Mon Sep 17 00:00:00 2001 From: Walter Bender Date: Mon, 20 Feb 2012 15:26:17 +0000 Subject: add poly support to print --- (limited to 'plugins/turtle_blocks_extras/turtle_blocks_extras.py') diff --git a/plugins/turtle_blocks_extras/turtle_blocks_extras.py b/plugins/turtle_blocks_extras/turtle_blocks_extras.py index 0ab049a..4a71381 100644 --- a/plugins/turtle_blocks_extras/turtle_blocks_extras.py +++ b/plugins/turtle_blocks_extras/turtle_blocks_extras.py @@ -1004,7 +1004,9 @@ bullets')) """ Print object n """ if flag and (self.tw.hide or self.tw.step_time == 0): return - if type(n) == str or type(n) == unicode: + if type(n) == list: + self.tw.showlabel('status', n) + elif type(n) == str or type(n) == unicode: if n[0:6] == 'media_' and \ n[6:].lower not in media_blocks_dictionary: try: -- cgit v0.9.1