Fix indention in plugin example

This commit is contained in:
Stefan Ritter 2011-03-25 14:48:21 +01:00
parent 7b67581d11
commit a23da4f1c2
1 changed files with 5 additions and 3 deletions

View File

@ -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("")