diff options
| author | Jason R. Coombs <jaraco@jaraco.com> | 2023-01-15 20:23:28 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-15 20:23:28 -0500 |
| commit | 217d9267e017aed6ddff36fa47d82ceb475cbf22 (patch) | |
| tree | bb2a615671f86bf18f8ef85593d0aedc6b4639bc /setuptools/command/egg_info.py | |
| parent | ef49c0a46de2e21287aff52033fd7ed460bb5c0e (diff) | |
| parent | 0a6cd4fc60a5ac61ab8f57a52d171ef4d2837067 (diff) | |
| download | python-setuptools-git-217d9267e017aed6ddff36fa47d82ceb475cbf22.tar.gz | |
Merge pull request #2822 from pypa/debt/remove-legacy-version
Remove reliance on LegacyVersion
Diffstat (limited to 'setuptools/command/egg_info.py')
| -rw-r--r-- | setuptools/command/egg_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/egg_info.py b/setuptools/command/egg_info.py index 95c81845..1885efb0 100644 --- a/setuptools/command/egg_info.py +++ b/setuptools/command/egg_info.py @@ -155,7 +155,7 @@ class InfoCommon: if self.tag_build: version += self.tag_build if self.tag_date: - version += time.strftime("-%Y%m%d") + version += time.strftime("%Y%m%d") return version vtags = property(tags) |
