diff options
Diffstat (limited to '')
| -rwxr-xr-x | src/featherweight.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/featherweight.py b/src/featherweight.py index d5e1d47..6fe219e 100755 --- a/src/featherweight.py +++ b/src/featherweight.py @@ -48,7 +48,7 @@ with touch('%s/feeds' % root) as feeds_flock: unflock(feeds_flock) -print('\033[?1049h\033[?25l', end = '') +print('\033[?1049h\033[?25l\033[?9h', end = '') try: tree = Tree('My Feeds', feeds) @@ -62,9 +62,10 @@ try: elif action == 'open': pass -except: +except Exception as err: + raise err pass finally: Popen(['stty', old_stty], stdout = PIPE, stderr = PIPE).communicate() - print('\033[?25h\033[?1049l', end = '') + print('\033[?9l\033[?25h\033[?1049l', end = '') |
