diff options
| author | bwarsaw | 2001-07-12 04:50:40 +0000 |
|---|---|---|
| committer | bwarsaw | 2001-07-12 04:50:40 +0000 |
| commit | 7f9035cb8d404f015b08ea9a92e27f019ec2d972 (patch) | |
| tree | 05f4ced6bff108b79ad801f5fc686c031a9cb85c /admin/bin/Release.py | |
| parent | e0b9263e5bdfbcd02b39c30734db3fb0df4a9126 (diff) | |
| download | mailman-7f9035cb8d404f015b08ea9a92e27f019ec2d972.tar.gz mailman-7f9035cb8d404f015b08ea9a92e27f019ec2d972.tar.zst mailman-7f9035cb8d404f015b08ea9a92e27f019ec2d972.zip | |
Diffstat (limited to 'admin/bin/Release.py')
| -rwxr-xr-x | admin/bin/Release.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/admin/bin/Release.py b/admin/bin/Release.py index 0ca64a2ba..91ec7478e 100755 --- a/admin/bin/Release.py +++ b/admin/bin/Release.py @@ -136,8 +136,7 @@ def do_bump(newvers): parts[1] = newvers text = VERSIONMARK.join(parts) parts = text.split(DATEMARK) - timestr = time.ctime(time.time()) - parts[1] = timestr[4:11] + timestr[-4:] + parts[1] = time.strftime('%d-%b-%Y', time.localtime(time.time())) text = DATEMARK.join(parts) fp.seek(0) fp.write(text) |
