diff options
| author | Scott Bahling <sbahling@suse.de> | 2013-07-18 12:45:01 +0200 |
|---|---|---|
| committer | Scott Bahling <sbahling@suse.de> | 2013-07-18 12:45:01 +0200 |
| commit | ab77b7fcc1416c1acb8e77572db7b30c72cc5292 (patch) | |
| tree | b4d09150499fe8c0a4e3cd75f0c9a0bb2b0cf2e5 /panfry/document.py | |
| parent | 66120bb19e24096f2482df5e479e7e4b9ca59fed (diff) | |
| download | panfry-ab77b7fcc1416c1acb8e77572db7b30c72cc5292.tar.gz panfry-ab77b7fcc1416c1acb8e77572db7b30c72cc5292.tar.xz panfry-ab77b7fcc1416c1acb8e77572db7b30c72cc5292.zip | |
fix print statement
Diffstat (limited to 'panfry/document.py')
| -rwxr-xr-x | panfry/document.py | 2 |
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) |
