summaryrefslogtreecommitdiff
path: root/panfry
diff options
context:
space:
mode:
authorScott Bahling <sbahling@suse.de>2013-07-18 12:45:01 +0200
committerScott Bahling <sbahling@suse.de>2013-07-18 12:45:01 +0200
commitab77b7fcc1416c1acb8e77572db7b30c72cc5292 (patch)
treeb4d09150499fe8c0a4e3cd75f0c9a0bb2b0cf2e5 /panfry
parent66120bb19e24096f2482df5e479e7e4b9ca59fed (diff)
downloadpanfry-ab77b7fcc1416c1acb8e77572db7b30c72cc5292.tar.gz
panfry-ab77b7fcc1416c1acb8e77572db7b30c72cc5292.tar.xz
panfry-ab77b7fcc1416c1acb8e77572db7b30c72cc5292.zip
fix print statement
Diffstat (limited to 'panfry')
-rwxr-xr-xpanfry/document.py2
1 files changed, 1 insertions, 1 deletions
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)