Skip to content

Commit 83a1e22

Browse files
committed
Remove unused variable
1 parent 9bbd9e7 commit 83a1e22

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

courier/quarantine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ def quarantine(body_path, control_paths, explanation):
137137
try:
138138
with open(body_path, 'rb') as body_file:
139139
qmessage = email.message_from_binary_file(body_file)
140-
except Exception as e:
140+
except Exception:
141141
# TODO: Handle this error.
142142
raise # InitError('Internal failure parsing message data file: %s' % str(e))
143143
qmessage_sender = qmessage['from']

0 commit comments

Comments
 (0)