just silly

This commit is contained in:
sanj 2010-07-28 23:14:30 +05:30
parent 8f60ee8c6e
commit 7316898e56

View File

@ -3,7 +3,7 @@ import os
def print_url_list(urls, width, height, output_path):
clean_urls = []
for u in urls:
clean_urls.append("'" + u + "'")
clean_urls.append(u)
cmd = "wkhtmltopdf --page-width %d --page-height %d %s %s" % (width, height, " ".join(clean_urls), output_path,)
os.system(cmd)
return output_path