aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Ritter <xeno@thehappy.de>2011-03-25 14:48:21 +0100
committerStefan Ritter <xeno@thehappy.de>2011-03-25 14:48:21 +0100
commita23da4f1c22c4d4e1f985d498230b59715504428 (patch)
tree3dc5f285999c0568c22437b24218af83b175776d
parent7b67581d1195583db5e2955247c6db7c75bdbdb3 (diff)
Fix indention in plugin example
-rw-r--r--plugins/plugin_example.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/plugins/plugin_example.py b/plugins/plugin_example.py
index 9361921..9ed03ed 100644
--- a/plugins/plugin_example.py
+++ b/plugins/plugin_example.py
@@ -10,7 +10,9 @@
# 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>")
+ind = " "
+
+print(ind*2 + "<p style=\"position: absolute; top: 0px; right: 5px; color: #666666; font-size: 10px;\">")
+print(ind*3 + "This blog is powered by Blogthon!")
+print(ind*2 + "</p>")
print("")