From: Greg Ward Date: Thu, 24 Feb 2000 03:17:43 +0000 (+0000) Subject: Fix from est@hyperreal.org: missing initialize in 'find_defaults()'. X-Git-Tag: v1.6a1~362 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4840112121e945d6ab6a5ab4adc9d6ba6ed9efa2;p=thirdparty%2FPython%2Fcpython.git Fix from est@hyperreal.org: missing initialize in 'find_defaults()'. --- diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py index 042b1fc54a7a..6b838bdef2e5 100644 --- a/Lib/distutils/command/sdist.py +++ b/Lib/distutils/command/sdist.py @@ -198,6 +198,7 @@ class sdist (Command): for fn in standards: if type (fn) is TupleType: alts = fn + got_it = 0 for fn in alts: if os.path.exists (fn): got_it = 1