]> jfr.im git - irc/weechat/qweechat.git/commitdiff
Replace python print statement with print() function
authorSebastien Helleu <redacted>
Sat, 24 Dec 2011 09:48:08 +0000 (10:48 +0100)
committerSebastien Helleu <redacted>
Sat, 24 Dec 2011 09:48:08 +0000 (10:48 +0100)
src/qweechat/weechat/color.py

index 88e96c982a3ea0549a019a40365f749b45640f93..f2923ee4def7d54e26a5fb62e634273130bfe06b 100644 (file)
@@ -75,7 +75,7 @@ class Color():
             index = int(color)
             return '\x01(Fr%s)' % self.color_options[index]
         except:
-            print 'Error decoding WeeChat color "%s"' % color
+            print('Error decoding WeeChat color "%s"' % color)
             return ''
 
     def _convert_terminal_color(self, fg_bg, attrs, color):
@@ -83,7 +83,7 @@ class Color():
             index = int(color)
             return '\x01(%s%s#%s)' % (fg_bg, attrs, self._rgb_color(index))
         except:
-            print 'Error decoding terminal color "%s"' % color
+            print('Error decoding terminal color "%s"' % color)
             return ''
 
     def _convert_color_attr(self, fg_bg, color):
@@ -104,7 +104,7 @@ class Color():
             index = int(color)
             return self._convert_terminal_color(fg_bg, attrs, WEECHAT_BASIC_COLORS[index][1])
         except:
-            print 'Error decoding color "%s"' % color
+            print('Error decoding color "%s"' % color)
             return ''
 
     def _attrcode_to_char(self, code):