From 8debf21607b40a7c82596bc6e19e7565d6478805 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Tue, 7 Jul 2020 12:49:00 +0530 Subject: fixing last of anti-pattern issues --- tests/backendTest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests') diff --git a/tests/backendTest.py b/tests/backendTest.py index 33b6019..5b5a453 100644 --- a/tests/backendTest.py +++ b/tests/backendTest.py @@ -28,7 +28,7 @@ def email(compressedFile): msg.attach(MIMEText(body, 'plain')) filename = "Curie_Web_Results_Job_ID_" + str(jobID) + ".zip" p = MIMEBase('application', 'octet-stream') - with open((str(zi) + ".zip"), "rb") as attachment: + with open((str(compressedFile) + ".zip"), "rb") as attachment: p.set_payload((attachment).read()) encoders.encode_base64(p) p.add_header('Content-Disposition', "attachment; filename= %s" % filename) -- cgit v1.2.3