testutil: Fix missing return
typo.
This commit is contained in:
parent
e8e7137216
commit
91a436abd5
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ class RTClient:
|
||||||
try:
|
try:
|
||||||
att_seq = iter(self.TICKET_DATA[str(ticket_id)])
|
att_seq = iter(self.TICKET_DATA[str(ticket_id)])
|
||||||
except KeyError:
|
except KeyError:
|
||||||
None
|
return None
|
||||||
att_id = str(attachment_id)
|
att_id = str(attachment_id)
|
||||||
multipart_id = None
|
multipart_id = None
|
||||||
for attch in att_seq:
|
for attch in att_seq:
|
||||||
|
|
Loading…
Add table
Reference in a new issue