Fix indentation.

This commit is contained in:
Benjamin Drung 2011-06-21 18:25:15 +02:00
parent 146b1619f1
commit 814fba1ade

View File

@ -44,8 +44,7 @@ def download_attachments(bug):
for attachment in bug.attachments:
f = attachment.data.open()
filename = os.path.join(os.getcwd(), bug_folder_name,
f.filename)
filename = os.path.join(os.getcwd(), bug_folder_name, f.filename)
local_file = open(filename, "w")
local_file.write(f.read())
f.close()