From 4840112121e945d6ab6a5ab4adc9d6ba6ed9efa2 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Thu, 24 Feb 2000 03:17:43 +0000 Subject: Fix from est@hyperreal.org: missing initialize in 'find_defaults()'. --- Lib/distutils/command/sdist.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/distutils/command/sdist.py b/Lib/distutils/command/sdist.py index 042b1fc..6b838bd 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 -- cgit v0.12