From 0865ef801d500e672ca250d7ba7bcd13d42036bd Mon Sep 17 00:00:00 2001 From: Craig Maloney Date: Sun, 15 Oct 2017 23:53:19 -0400 Subject: [PATCH 1/2] Reset the prompt value after displaying the toots. --- src/tootstream/toot.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tootstream/toot.py b/src/tootstream/toot.py index 68b60cf..54c7f1c 100644 --- a/src/tootstream/toot.py +++ b/src/tootstream/toot.py @@ -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': @@ -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__ = '' From efeb85efc4dd17172bfa6c75100c94d66e7b7765 Mon Sep 17 00:00:00 2001 From: Craig Maloney Date: Mon, 16 Oct 2017 11:07:55 -0400 Subject: [PATCH 2/2] Version bump --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fca0a29..dc9ed4d 100644 --- a/setup.py +++ b/setup.py @@ -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'),