From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id DE0A8138ACF for ; Wed, 28 Jan 2015 20:14:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F303BE0B8A; Wed, 28 Jan 2015 20:14:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2BBD7E0B8B for ; Wed, 28 Jan 2015 20:14:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DE5643408F1 for ; Wed, 28 Jan 2015 20:07:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BC32310815 for ; Tue, 27 Jan 2015 18:20:27 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1422382745.e9dea3a98aa5031fecf1c7115de77e948e8d07ca.dolsen@gentoo> Subject: [gentoo-commits] proj/mirrorselect:master commit in: mirrorselect/ X-VCS-Repository: proj/mirrorselect X-VCS-Files: mirrorselect/extractor.py X-VCS-Directories: mirrorselect/ X-VCS-Committer: dolsen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: e9dea3a98aa5031fecf1c7115de77e948e8d07ca X-VCS-Branch: master Date: Tue, 27 Jan 2015 18:20:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 676ebbee-45dd-4068-9ac6-20d15d8e2144 X-Archives-Hash: 6ff69180fabef7bb8b81e8fdf36f368f commit: e9dea3a98aa5031fecf1c7115de77e948e8d07ca Author: Brian Dolbec gentoo org> AuthorDate: Tue Jan 27 18:19:05 2015 +0000 Commit: Brian Dolbec gentoo org> CommitDate: Tue Jan 27 18:19:05 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/mirrorselect.git;a=commit;h=e9dea3a9 Add missed output mode function assignment. --- mirrorselect/extractor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mirrorselect/extractor.py b/mirrorselect/extractor.py index 59efad1..06dce6c 100644 --- a/mirrorselect/extractor.py +++ b/mirrorselect/extractor.py @@ -107,6 +107,7 @@ class Extractor(object): # setup the ssl-fetch ouptut map connector_output = { 'info':self.output.write, + 'debug': self.output.write, 'error': self.output.print_err, 'kwargs-info': {'level': 2}, 'kwargs-debug': {'level':2},