diff options
| author | Anthony Baxter <anthonybaxter@gmail.com> | 2004-10-13 13:22:34 (GMT) |
|---|---|---|
| committer | Anthony Baxter <anthonybaxter@gmail.com> | 2004-10-13 13:22:34 (GMT) |
| commit | 73cc8479f000bbb84d0775aea55fb9de75ec110e (patch) | |
| tree | 90d8852ee6fbd6f4dcfe9935a1d1adca805ca49a | |
| parent | f2113f0c6e7efb788c6aa3bbf666fda223bce188 (diff) | |
| download | cpython-73cc8479f000bbb84d0775aea55fb9de75ec110e.zip cpython-73cc8479f000bbb84d0775aea55fb9de75ec110e.tar.gz cpython-73cc8479f000bbb84d0775aea55fb9de75ec110e.tar.bz2 | |
oops. how did _that_ happen?
| -rw-r--r-- | Lib/distutils/dist.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/distutils/dist.py b/Lib/distutils/dist.py index a23a773..1a39022 100644 --- a/Lib/distutils/dist.py +++ b/Lib/distutils/dist.py @@ -230,6 +230,7 @@ class Distribution: setattr(self.metadata, key, val) elif hasattr(self, key): setattr(self, key, val) + else: msg = "Unknown distribution option: %s" % repr(key) if warnings is not None: warnings.warn(msg) |
