err, print statement, sorry

This commit is contained in:
sanj 2010-07-28 23:23:12 +05:30
parent 7a4f4fcbc9
commit 1ce95ac842

View File

@ -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