From 1ce95ac84292ff9c2dfe77d77f3e8ace2ab50f5d Mon Sep 17 00:00:00 2001 From: sanj Date: Wed, 28 Jul 2010 23:23:12 +0530 Subject: [PATCH] err, print statement, sorry --- edgware/editor/print_pdf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edgware/editor/print_pdf.py b/edgware/editor/print_pdf.py index 8c41daa..671ecf5 100644 --- a/edgware/editor/print_pdf.py +++ b/edgware/editor/print_pdf.py @@ -5,6 +5,6 @@ def print_url_list(urls, width, height, output_path): for u in urls: clean_urls.append(u) cmd = "wkhtmltopdf --page-width %d --page-height %d %s '%s'" % (width, height, " ".join(clean_urls), output_path,) - print cmd +# print cmd os.system(cmd) return output_path