From 981f7368f68a03e416f946c6860197bc21bf743c Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Tue, 23 May 2000 03:53:10 +0000 Subject: [PATCH] Don't take advantage of OptionDummy's new "auto-initialization" feature after all -- turns out it doesn't buy us much after all... --- Lib/distutils/fancy_getopt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/distutils/fancy_getopt.py b/Lib/distutils/fancy_getopt.py index 588c6ba73f..a593354c9d 100644 --- a/Lib/distutils/fancy_getopt.py +++ b/Lib/distutils/fancy_getopt.py @@ -239,7 +239,7 @@ class FancyGetopt: if args is None: args = sys.argv[1:] if object is None: - object = OptionDummy(self.attr_name.values()) + object = OptionDummy() created_object = 1 else: created_object = 0 -- 2.50.0