Skip to content

Commit

Permalink
Merge branch 'release/0.2.0-rc.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
craigmaloney committed Oct 16, 2017
2 parents 27c2f09 + efeb85e commit a3f42ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
setup(
name="tootstream",
version="0.2.0rc4",
version="0.2.0rc5",
install_requires=[line.strip() for line in open('requirements.txt')],

packages=find_packages('src'),
Expand Down
3 changes: 1 addition & 2 deletions src/tootstream/toot.py
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,6 @@ def note(mastodon, rest):
cprint(display_name + username, fg('magenta'))
print(" " + format_toot_idline(note['status']) + " " + time)
cprint(get_content(note['status']), attr('bold'), fg('white'))
print()

# Favorites
elif note['type'] == 'favourite':
Expand All @@ -711,7 +710,7 @@ def note(mastodon, rest):
cprint(display_name + username + " followed you!", fg('yellow'))

# blank line
print()
print(stylize("", attr('dim')))
note.__argstr__ = ''


Expand Down

0 comments on commit a3f42ca

Please sign in to comment.