Skip to content
This repository was archived by the owner on Aug 7, 2024. It is now read-only.

Commit 82a57b1

Browse files
committed
fix attachment_url param for PostUpdate to be backwards compatible.
see PR #401 for brief discussion.
1 parent 6ca83cb commit 82a57b1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

twitter/api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -927,13 +927,13 @@ def PostUpdate(self,
927927
in_reply_to_status_id=None,
928928
auto_populate_reply_metadata=False,
929929
exclude_reply_user_ids=None,
930-
attachment_url=None,
931930
latitude=None,
932931
longitude=None,
933932
place_id=None,
934933
display_coordinates=False,
935934
trim_user=False,
936-
verify_status_length=True):
935+
verify_status_length=True,
936+
attachment_url=None):
937937
"""Post a twitter status message from the authenticated user.
938938
939939
https://dev.twitter.com/docs/api/1.1/post/statuses/update

0 commit comments

Comments
 (0)