From ab77b7fcc1416c1acb8e77572db7b30c72cc5292 Mon Sep 17 00:00:00 2001 From: Scott Bahling Date: Thu, 18 Jul 2013 12:45:01 +0200 Subject: fix print statement --- panfry/document.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'panfry') diff --git a/panfry/document.py b/panfry/document.py index e6e35c8..e03aca1 100755 --- a/panfry/document.py +++ b/panfry/document.py @@ -294,7 +294,7 @@ class Document: if self.standalone and not 'index.html' in htmlfiles: src = os.path.join(self.pages[0].htmlfile) ref = os.path.join(pub_path, 'index.html') - print("Linking %s to %s", (ref, src)) + print("Linking %s to %s" % (ref, src)) if os.path.exists(ref): os.remove(ref) os.symlink(src, ref) -- cgit v1.2.3