Python3 compatibility

This commit is contained in:
Stefan Ritter 2011-03-23 22:48:21 +01:00
parent f9bc02e1c0
commit f44fae9771
2 changed files with 7 additions and 7 deletions

View File

@ -18,7 +18,7 @@ import sys
import time
import locale
import re
import ConfigParser
import configparser
from cgi import FieldStorage
from smtplib import SMTP
from hashlib import md5
@ -70,7 +70,7 @@ def document_header(string):
print("<rss version=\"2.0\">")
# Parse configuration
configuration = ConfigParser.SafeConfigParser()
configuration = configparser.SafeConfigParser()
for config in ["../blogthonrc", "../.blogthonrc", "configuration"]:
if os.path.exists(config):
@ -105,7 +105,7 @@ try:
mail_to = configuration.get("smtp", "mail_to")
smtp_host = configuration.get("smtp", "smtp_host")
feed_preview = configuration.get("feed", "feed_preview")
except ConfigParser.Error, error:
except configparser.Error as error:
errorpage(str(error))
if not re.match("^http:\/\/.*$", blog_url):

View File

@ -10,7 +10,7 @@
# 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>'
print ''
print(" <p style=\"position: absolute; top: 0px; right: 0px; color: #666666; font-size: 10px;\">")
print(" This blog is powered by Blogthon!&nbsp;")
print(" </p>")
print("")