projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9811861
)
Fix from est@hyperreal.org: missing initialize in 'find_defaults()'.
author
Greg Ward
<gward@python.net>
Thu, 24 Feb 2000 03:17:43 +0000
(
03:17
+0000)
committer
Greg Ward
<gward@python.net>
Thu, 24 Feb 2000 03:17:43 +0000
(
03:17
+0000)
Lib/distutils/command/sdist.py
patch
|
blob
|
history
diff --git
a/Lib/distutils/command/sdist.py
b/Lib/distutils/command/sdist.py
index 042b1fc54a7add30b54bc7a133936deac791b907..6b838bdef2e53ed481147b2a0c6f0a3e610b87f8 100644
(file)
--- 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