aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorStefan Ritter <xeno@thehappy.de>2011-03-23 22:48:21 +0100
committerStefan Ritter <xeno@thehappy.de>2011-03-23 22:48:21 +0100
commitf44fae97710483f71bb1cbdcbe5bb41656660486 (patch)
tree70ca039e95f722e7b4a61242d02f889c4793f3a6 /plugins
parentf9bc02e1c0d8aa4dc68221259ba50265c8a6c185 (diff)
Python3 compatibility
Diffstat (limited to 'plugins')
-rw-r--r--plugins/plugin_example.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/plugin_example.py b/plugins/plugin_example.py
index 695af52..9361921 100644
--- a/plugins/plugin_example.py
+++ b/plugins/plugin_example.py
@@ -10,7 +10,7 @@
# Author: Stefan Ritter <xeno@thehappy.de>
# Description: Example plugin
-print ' <p style="position: absolute; top: 0px; right: 0px; color: #666666; font-size: 10px;">'
-print ' This blog is powered by Blogthon!&nbsp;'
-print ' </p>'
-print ''
+print(" <p style=\"position: absolute; top: 0px; right: 0px; color: #666666; font-size: 10px;\">")
+print(" This blog is powered by Blogthon!&nbsp;")
+print(" </p>")
+print("")