We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e6ed74 commit ed4d104Copy full SHA for ed4d104
sayminimal/tweet.py
@@ -198,9 +198,9 @@ def prompt_for_media_file(self):
198
def update_bonus_label(self):
199
s = ""
200
if self.attached_media:
201
- s += "Attached: %s" % media_file
+ s += "Attached: %s\n" % self.attached_media
202
if self.reply_id:
203
- s += " Replying to: %s\n> %s" % (self.reply_id, self.reply_text)
+ s += "Replying to: %s\n> %s" % (self.reply_id, self.reply_text)
204
self.bonus_label.set_label(s)
205
206
def display_error(self, e):
setup.py
@@ -12,7 +12,7 @@
12
13
setup(
14
name='sayminimal',
15
- version="2.0.2",
+ version="2.0.3",
16
description='A minimalist write-only Twitter client.',
17
long_description=long_description,
18
url='https://github.com/mduo13/sayminimal',
0 commit comments