remove ascii drawing - toot - Unnamed repository; edit this file 'description' … | |
Log | |
Files | |
Refs | |
LICENSE | |
--- | |
commit 32b0556ced31ee29fbf4e33ee02240fe76901bf1 | |
parent 3bc2e74b8855375001ed48dc2d4866db71232608 | |
Author: Christian Kellermann <[email protected]> | |
Date: Mon, 5 Mar 2018 14:21:07 +0100 | |
remove ascii drawing | |
Diffstat: | |
toot/commands.py | 6 +++--- | |
1 file changed, 3 insertions(+), 3 deletions(-) | |
--- | |
diff --git a/toot/commands.py b/toot/commands.py | |
@@ -33,7 +33,7 @@ def _print_timeline(item): | |
return zip_longest(left_column, right_column, fillvalue="") | |
for left, right in timeline_rows(item): | |
- print_out("{:30} │ {}".format(left, right)) | |
+ print_out("{:30} {}".format(left, right)) | |
def _parse_timeline(item): | |
@@ -57,10 +57,10 @@ def timeline(app, user, args): | |
items = api.timeline_home(app, user, args) | |
parsed_items = [_parse_timeline(t) for t in items] | |
- print_out("─" * 31 + "┬" + "─" * 88) | |
+ print_out("") | |
for item in parsed_items: | |
_print_timeline(item) | |
- print_out("─" * 31 + "┼" + "─" * 88) | |
+ print_out("") | |
def curses(app, user, args): |