From 34e388db18ca5a68d767a3f111fcc7688cacc5a9 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Mon, 10 Jan 2022 13:31:28 -0800 Subject: [PATCH] Don't print stderr when fzf exits with an error --- bin/fedit | 1 - setup.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/fedit b/bin/fedit index 18e1966..b245eca 100755 --- a/bin/fedit +++ b/bin/fedit @@ -98,7 +98,6 @@ if __name__ == "__main__": except KeyboardInterrupt: exit() except fzf.FZFError as e: - print(e) exit(e.exit_code) if selected_file != "": diff --git a/setup.py b/setup.py index 6fd7310..210d90c 100755 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ with open("README", "r") as fh: # ========== Package Setup ========== setuptools.setup( name="file_scripts", - version="1.0", + version="1.0.1", author="Eric Torres", author_email="erictorres4@protonmail.com", description="File-related helper scripts",