diff options
author | Stefan Ritter <xeno@thehappy.de> | 2010-06-11 16:42:38 +0200 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2010-06-11 16:42:38 +0200 |
commit | e812b7f8245de7222c40d1b0f196c8f2832e069a (patch) | |
tree | 92c193a30b429cd08d1bb47c0ec9a93522565eaf | |
parent | e412f643c324df1b1b963af968362f0000f694f0 (diff) |
Fixed another W3C issue in the demo plugin
-rw-r--r-- | plugins/plugin_example.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/plugin_example.py b/plugins/plugin_example.py index 98aa805..695af52 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 ' <span style="position: absolute; top: 0px; right: 0px; color: #666666; font-size: 10px;">' +print ' <p style="position: absolute; top: 0px; right: 0px; color: #666666; font-size: 10px;">' print ' This blog is powered by Blogthon! ' -print ' </span>' +print ' </p>' print '' |