diff options
author | Greg Ward <gward@python.net> | 2000-02-24 03:17:43 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-02-24 03:17:43 (GMT) |
commit | 4840112121e945d6ab6a5ab4adc9d6ba6ed9efa2 (patch) | |
tree | d50790a62008e17a1c5fc0085b535166275eed13 /Lib | |
parent | 9811861e3c31f2cb9d04853460408c4fea3d6f1b (diff) | |
download | cpython-4840112121e945d6ab6a5ab4adc9d6ba6ed9efa2.zip cpython-4840112121e945d6ab6a5ab4adc9d6ba6ed9efa2.tar.gz cpython-4840112121e945d6ab6a5ab4adc9d6ba6ed9efa2.tar.bz2 |
Fix from est@hyperreal.org: missing initialize in 'find_defaults()'.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/distutils/command/sdist.py | 1 |
1 files changed, 1 insertions, 0 deletions
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 |