diff options
author | Stefan Ritter <xeno@thehappy.de> | 2011-03-25 14:48:21 +0100 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2011-03-25 14:48:21 +0100 |
commit | a23da4f1c22c4d4e1f985d498230b59715504428 (patch) | |
tree | 3dc5f285999c0568c22437b24218af83b175776d | |
parent | 7b67581d1195583db5e2955247c6db7c75bdbdb3 (diff) |
Fix indention in plugin example
-rw-r--r-- | plugins/plugin_example.py | 8 |
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! ") -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("") |