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 DFD971381F3 for ; Wed, 14 Nov 2012 20:28:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 979CD21C011; Wed, 14 Nov 2012 20:28:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2121021C011 for ; Wed, 14 Nov 2012 20:28:37 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 38B6033DBC4 for ; Wed, 14 Nov 2012 20:28:36 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id A6DDFE5436 for ; Wed, 14 Nov 2012 20:28:34 +0000 (UTC) From: "Paul Varner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Paul Varner" Message-ID: <1352924701.576d19d461e97581a6daacc344847bfb565363d6.fuzzyray@gentoo> Subject: [gentoo-commits] proj/mirrorselect:master commit in: mirrorselect/ X-VCS-Repository: proj/mirrorselect X-VCS-Files: mirrorselect/output.py X-VCS-Directories: mirrorselect/ X-VCS-Committer: fuzzyray X-VCS-Committer-Name: Paul Varner X-VCS-Revision: 576d19d461e97581a6daacc344847bfb565363d6 X-VCS-Branch: master Date: Wed, 14 Nov 2012 20:28:34 +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: 11edb8bb-a5f3-4062-a29a-1fd7789a4f6e X-Archives-Hash: 3f1f9a0101d0032fa85219fbdc338674 commit: 576d19d461e97581a6daacc344847bfb565363d6 Author: Paul Varner gentoo org> AuthorDate: Wed Nov 14 20:25:01 2012 +0000 Commit: Paul Varner gentoo org> CommitDate: Wed Nov 14 20:25:01 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/mirrorselect.git;a=commit;h=576d19d4 Call the base class constructor for ColoredFormatter so the class gets properly constructed. --- mirrorselect/output.py | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/mirrorselect/output.py b/mirrorselect/output.py index 4137cad..632791a 100644 --- a/mirrorselect/output.py +++ b/mirrorselect/output.py @@ -107,6 +107,7 @@ class ColoredFormatter(IndentedHelpFormatter): """ def __init__(self, output): + IndentedHelpFormatter.__init__(self) self.output = output def format_heading(self, heading):