From a23da4f1c22c4d4e1f985d498230b59715504428 Mon Sep 17 00:00:00 2001 From: Stefan Ritter Date: Fri, 25 Mar 2011 14:48:21 +0100 Subject: Fix indention in plugin example --- plugins/plugin_example.py | 8 +++++--- 1 file 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 # Description: Example plugin -print("

") -print(" This blog is powered by Blogthon! ") -print("

") +ind = " " + +print(ind*2 + "

") +print(ind*3 + "This blog is powered by Blogthon!") +print(ind*2 + "

") print("") -- cgit v1.2.3