From a4f4472046d4cf384f4e713fb6ce312c0b0fe3c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=ABl=20Schaerer?= Date: Fri, 9 Sep 2011 13:04:35 +0200 Subject: [PATCH] Send error message to stderr --- autojump | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autojump b/autojump index 05b9a5c..7b3aaf4 100755 --- a/autojump +++ b/autojump @@ -171,7 +171,7 @@ def shell_utility(): optlist, args = getopt.getopt(argv[1:], 'a', ['stat', 'import', 'completion', 'bash']) except getopt.GetoptError as ex: - print("Unknown command line argument: %s" % ex) + print("Unknown command line argument: %s" % ex, file=stderr) exit(1) dic_file = get_dic_file()