diff --git a/conans/client/rest/auth_manager.py b/conans/client/rest/auth_manager.py index 1eadc26ab7b..1bb9f75cc71 100644 --- a/conans/client/rest/auth_manager.py +++ b/conans/client/rest/auth_manager.py @@ -48,9 +48,6 @@ def call_rest_api_method(self, remote, method_name, *args, **kwargs): # Anonymous is not enough, ask for a user self._user_io.out.info('Please log in to "%s" to perform this action. ' 'Execute "conan user" command.' % remote.name) - if "bintray" in remote.url: - self._user_io.out.info('If you don\'t have an account sign up here: ' - 'https://bintray.com/signup/oss') return self._retry_with_new_token(user, remote, method_name, *args, **kwargs) elif token and refresh_token: # If we have a refresh token try to refresh the access token