diff options
author | Stefan Ritter <xeno@thehappy.de> | 2011-03-24 00:02:41 +0100 |
---|---|---|
committer | Stefan Ritter <xeno@thehappy.de> | 2011-03-24 00:02:41 +0100 |
commit | 5e44ac19064c1758e16c49cabab2f8a1d2c526b9 (patch) | |
tree | 33c6f96c7ff0f9b668225c42c8789f95fd539dc2 /blogthon.cgi | |
parent | b8cb97bd6e2f7232eb19d7cffff01dde7c2535f9 (diff) |
Fix print to print("")
Diffstat (limited to 'blogthon.cgi')
-rwxr-xr-x | blogthon.cgi | 2 |
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) |