aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Varner <fuzzyray@gentoo.org>2012-11-14 14:25:01 -0600
committerPaul Varner <fuzzyray@gentoo.org>2012-11-14 14:25:01 -0600
commit576d19d461e97581a6daacc344847bfb565363d6 (patch)
treeb4a664e61d2c5f7f916f329dd82793e252ae0f26
parentHardcode the mirrorselect package, so setup.py doesn't get confused by (diff)
downloadmirrorselect-576d19d461e97581a6daacc344847bfb565363d6.tar.gz
mirrorselect-576d19d461e97581a6daacc344847bfb565363d6.tar.bz2
mirrorselect-576d19d461e97581a6daacc344847bfb565363d6.zip
Call the base class constructor for ColoredFormatter so the class gets
properly constructed.
-rw-r--r--mirrorselect/output.py1
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):