summaryrefslogtreecommitdiff
path: root/setuptools/command/egg_info.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2023-01-15 20:23:28 -0500
committerGitHub <noreply@github.com>2023-01-15 20:23:28 -0500
commit217d9267e017aed6ddff36fa47d82ceb475cbf22 (patch)
treebb2a615671f86bf18f8ef85593d0aedc6b4639bc /setuptools/command/egg_info.py
parentef49c0a46de2e21287aff52033fd7ed460bb5c0e (diff)
parent0a6cd4fc60a5ac61ab8f57a52d171ef4d2837067 (diff)
downloadpython-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.py2
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)