From 814fba1ade32aca4f2040fc0753afc59a9faeede Mon Sep 17 00:00:00 2001 From: Benjamin Drung Date: Tue, 21 Jun 2011 18:25:15 +0200 Subject: [PATCH] Fix indentation. --- grab-attachments | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/grab-attachments b/grab-attachments index aba5043..dddbb12 100755 --- a/grab-attachments +++ b/grab-attachments @@ -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()