Skip to content

Commit

Permalink
Fix another python3 vs python2 format string issue
Browse files Browse the repository at this point in the history
  • Loading branch information
tiger-zz committed Apr 13, 2023
1 parent 96f9d32 commit 9c49fa1
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 9c49fa1

Please sign in to comment.