commit | 4840112121e945d6ab6a5ab4adc9d6ba6ed9efa2 | [log] [tgz] |
---|---|---|
author | Greg Ward <gward@python.net> | Thu Feb 24 03:17:43 2000 +0000 |
committer | Greg Ward <gward@python.net> | Thu Feb 24 03:17:43 2000 +0000 |
tree | d50790a62008e17a1c5fc0085b535166275eed13 | |
parent | 9811861e3c31f2cb9d04853460408c4fea3d6f1b [diff] [blame] |
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 042b1fc..6b838bd 100644 --- a/Lib/distutils/command/sdist.py +++ b/Lib/distutils/command/sdist.py
@@ -198,6 +198,7 @@ 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