diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2015-02-10 20:08:36 -0500 |
|---|---|---|
| committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-02-10 20:08:36 -0500 |
| commit | f588b5f18d7530c5da3985a1cc4f978dfc90f255 (patch) | |
| tree | 42a14296885c1ab24be0810fae05cd807c487576 | |
| parent | 492758aff46622fb93845f96b9062dab029064f4 (diff) | |
| parent | 88f62bfe62531bed69f871425d21d8c4e3203ecf (diff) | |
| download | python-setuptools-git-f588b5f18d7530c5da3985a1cc4f978dfc90f255.tar.gz | |
Merged in minrk/setuptools/no-normalize-warning (pull request #118)
remove warning on normalization
| -rw-r--r-- | setuptools/dist.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/setuptools/dist.py b/setuptools/dist.py index bc29b131..ffbc7c48 100644 --- a/setuptools/dist.py +++ b/setuptools/dist.py @@ -277,10 +277,9 @@ class Distribution(_Distribution): normalized_version = str(ver) if self.metadata.version != normalized_version: warnings.warn( - "The version specified requires normalization, " - "consider using '%s' instead of '%s'." % ( - normalized_version, + "Normalizing '%s' to '%s'" % ( self.metadata.version, + normalized_version, ) ) self.metadata.version = normalized_version |
