Skip to content

Commit

Permalink
fixing bug with implementation of #9
Browse files Browse the repository at this point in the history
  • Loading branch information
iannesbitt committed Jan 8, 2021
1 parent 13be39f commit c9162e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rsudp/c_tweet.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def _resolve_extra_text(self, extra_text):
extra_text = str(extra_text)
len_ex_txt = len(extra_text)

if len_extra_text > 143:
if len_ex_text > 143:
printW('extra_text parameter is longer than allowable (%s chars) and will be truncated. Please keep extra_text at or below 143 characters.' % len_ex_txt, sender=self.sender)
extra_text = extra_text[:143]

Expand Down

0 comments on commit c9162e9

Please sign in to comment.