From 9fe52b370dc224ef80abac1e4baff60e3f6651a5 Mon Sep 17 00:00:00 2001 From: Phillip Berndt Date: Mon, 26 Jan 2015 07:48:06 +0100 Subject: [PATCH] Log to stderr (Required to allow users to redirect --dry-run output) --- autorandr.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/autorandr.py b/autorandr.py index 5083c03..1339014 100755 --- a/autorandr.py +++ b/autorandr.py @@ -550,14 +550,14 @@ def main(argv): else: for profile_name in profiles.keys(): if profile_blocked(os.path.join(profile_path, profile_name)): - print("%s (blocked)" % profile_name) + print("%s (blocked)" % profile_name, file=sys.stderr) continue if detected_profile == profile_name: - print("%s (detected)" % profile_name) + print("%s (detected)" % profile_name, file=sys.stderr) if "-c" in options or "--change" in options: load_profile = detected_profile else: - print(profile_name) + print(profile_name, file=sys.stderr) if "-d" in options: options["--default"] = options["-d"] @@ -574,8 +574,8 @@ def main(argv): print("Failed to load profile '%s':\nProfile not found" % load_profile, file=sys.stderr) sys.exit(1) add_unused_outputs(config, profile) - if profile == config and not "-f" in options and not "--force" in options: - print("Config already loaded") + if profile == dict(config) and not "-f" in options and not "--force" in options: + print("Config already loaded", file=sys.stderr) sys.exit(0) try: -- 2.39.2