aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Ritter <xeno@thehappy.de>2011-03-24 00:02:41 +0100
committerStefan Ritter <xeno@thehappy.de>2011-03-24 00:02:41 +0100
commit5e44ac19064c1758e16c49cabab2f8a1d2c526b9 (patch)
tree33c6f96c7ff0f9b668225c42c8789f95fd539dc2
parentb8cb97bd6e2f7232eb19d7cffff01dde7c2535f9 (diff)
Fix print to print("")
-rwxr-xr-xblogthon.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/blogthon.cgi b/blogthon.cgi
index a90ff88..1457a25 100755
--- a/blogthon.cgi
+++ b/blogthon.cgi
@@ -358,7 +358,7 @@ else:
print(tab*2 + "<link rel=\"stylesheet\" type=\"text/css\" href=\"styles/%s/%s.css\" />" % (style, style))
print(tab + "</head>")
print(tab + "<body>")
- print
+ print("")
# Plugins
sys.path.append(plugins_dir)