python join is a method of string, not array. repeat that 100 times.

This commit is contained in:
sanj 2010-07-28 23:06:58 +05:30
parent c343d3e9f8
commit d7bc143079

View File

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