aboutsummaryrefslogtreecommitdiffstats
path: root/release.py
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-03-29 20:28:01 +0800
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>2010-03-29 20:28:01 +0800
commit947c4ba4558c7cb156956ac63000b03bddbb0c9c (patch)
tree0d65d240d35871d267a61a2479c6567b2b440c3d /release.py
parentf468e66e0f35532de89ffd072828ea26d496090d (diff)
downloadgsoc2013-empathy-947c4ba4558c7cb156956ac63000b03bddbb0c9c.tar
gsoc2013-empathy-947c4ba4558c7cb156956ac63000b03bddbb0c9c.tar.gz
gsoc2013-empathy-947c4ba4558c7cb156956ac63000b03bddbb0c9c.tar.bz2
gsoc2013-empathy-947c4ba4558c7cb156956ac63000b03bddbb0c9c.tar.lz
gsoc2013-empathy-947c4ba4558c7cb156956ac63000b03bddbb0c9c.tar.xz
gsoc2013-empathy-947c4ba4558c7cb156956ac63000b03bddbb0c9c.tar.zst
gsoc2013-empathy-947c4ba4558c7cb156956ac63000b03bddbb0c9c.zip
release.py: add release date in NEWS
Diffstat (limited to 'release.py')
-rwxr-xr-xrelease.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/release.py b/release.py
index b0491b713..624dd11d2 100755
--- a/release.py
+++ b/release.py
@@ -221,7 +221,8 @@ class Project:
news = 'NEW in '+ self.package_version
line = '=' * len(news)
- news += '\n%s\n' % line
+ today = datetime.date.today()
+ news += ' (%s)\n%s\n' % (today.strftime('%d/%m/%Y'),line)
if bugs != '':
news += 'Bugs fixed:\n' + bugs + '\n'
if translations != '':