Python3 compatibility
This commit is contained in:
parent
f9bc02e1c0
commit
f44fae9771
@ -18,7 +18,7 @@ import sys
|
|||||||
import time
|
import time
|
||||||
import locale
|
import locale
|
||||||
import re
|
import re
|
||||||
import ConfigParser
|
import configparser
|
||||||
from cgi import FieldStorage
|
from cgi import FieldStorage
|
||||||
from smtplib import SMTP
|
from smtplib import SMTP
|
||||||
from hashlib import md5
|
from hashlib import md5
|
||||||
@ -70,7 +70,7 @@ def document_header(string):
|
|||||||
print("<rss version=\"2.0\">")
|
print("<rss version=\"2.0\">")
|
||||||
|
|
||||||
# Parse configuration
|
# Parse configuration
|
||||||
configuration = ConfigParser.SafeConfigParser()
|
configuration = configparser.SafeConfigParser()
|
||||||
|
|
||||||
for config in ["../blogthonrc", "../.blogthonrc", "configuration"]:
|
for config in ["../blogthonrc", "../.blogthonrc", "configuration"]:
|
||||||
if os.path.exists(config):
|
if os.path.exists(config):
|
||||||
@ -105,7 +105,7 @@ try:
|
|||||||
mail_to = configuration.get("smtp", "mail_to")
|
mail_to = configuration.get("smtp", "mail_to")
|
||||||
smtp_host = configuration.get("smtp", "smtp_host")
|
smtp_host = configuration.get("smtp", "smtp_host")
|
||||||
feed_preview = configuration.get("feed", "feed_preview")
|
feed_preview = configuration.get("feed", "feed_preview")
|
||||||
except ConfigParser.Error, error:
|
except configparser.Error as error:
|
||||||
errorpage(str(error))
|
errorpage(str(error))
|
||||||
|
|
||||||
if not re.match("^http:\/\/.*$", blog_url):
|
if not re.match("^http:\/\/.*$", blog_url):
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
# Author: Stefan Ritter <xeno@thehappy.de>
|
# Author: Stefan Ritter <xeno@thehappy.de>
|
||||||
# Description: Example plugin
|
# Description: Example plugin
|
||||||
|
|
||||||
print ' <p 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(" This blog is powered by Blogthon! ")
|
||||||
print ' </p>'
|
print(" </p>")
|
||||||
print ''
|
print("")
|
||||||
|
Loading…
Reference in New Issue
Block a user