Skip to content

Commit

Permalink
Merge pull request #90 from nylas/incident-20230412-elevated-504s-fro…
Browse files Browse the repository at this point in the history
…m-exchange-server-when-sending

Fix another python3 vs python2 format string issue
  • Loading branch information
tiger-zz authored Apr 13, 2023
2 parents 96f9d32 + 9c49fa1 commit 9bf610f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exchangelib/properties.py
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ class AlternateId(EWSElement):
@classmethod
def response_tag(cls):
# This element is in TNS in the request and MNS in the response...
return f"{{{MNS}}}{cls.ELEMENT_NAME}"
return "{{{}}}{}".format(MNS, cls.ELEMENT_NAME)


class AlternatePublicFolderId(EWSElement):
Expand Down

0 comments on commit 9bf610f

Please sign in to comment.