Fix from est@hyperreal.org: missing initialize in 'find_defaults()'.
authorGreg Ward <gward@python.net>
Thu, 24 Feb 2000 03:17:43 +0000 (03:17 +0000)
committerGreg Ward <gward@python.net>
Thu, 24 Feb 2000 03:17:43 +0000 (03:17 +0000)
Lib/distutils/command/sdist.py

index 042b1fc54a7add30b54bc7a133936deac791b907..6b838bdef2e53ed481147b2a0c6f0a3e610b87f8 100644 (file)
@@ -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