From ac5d6e312a7db8839b3a4c290101674c1a09bcb6 Mon Sep 17 00:00:00 2001 From: Eduardo Kalinowski Date: Thu, 10 Jun 2021 13:49:05 -0300 Subject: [PATCH] Report Profile renames even if --quiet is enabled (#1180) While this isn't really an error, it requires user action, so the message is printed to stderr even with --quiet, and repeated at the end when that option is not enabled. Resolves #1159. --- instaloader/instaloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instaloader/instaloader.py b/instaloader/instaloader.py index a0c0ecc..46f6a8f 100644 --- a/instaloader/instaloader.py +++ b/instaloader/instaloader.py @@ -1298,7 +1298,7 @@ class Instaloader: profile_id)) profile_from_id = Profile.from_id(self.context, profile_id) newname = profile_from_id.username - self.context.log("Profile {0} has changed its name to {1}.".format(profile_name, newname)) + self.context.error("Profile {0} has changed its name to {1}.".format(profile_name, newname)) if latest_stamps is None: if ((format_string_contains_key(self.dirname_pattern, 'profile') or format_string_contains_key(self.dirname_pattern, 'target'))):