From f6460025434d15cd18297ffbf248493fe5fcf9f8 Mon Sep 17 00:00:00 2001 From: Benjamin Drung Date: Sat, 23 Apr 2011 13:51:58 +0200 Subject: [PATCH] Fix intentation. --- grab-attachments | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grab-attachments b/grab-attachments index 139efaf..8facbec 100755 --- a/grab-attachments +++ b/grab-attachments @@ -68,7 +68,7 @@ def main(): for attachment in bug.attachments: f = attachment.data.open() filename = os.path.join(os.getcwd(), bug_folder_name, - f.filename) + f.filename) local_file = open(filename, "w") local_file.write(f.read()) f.close()