summaryrefslogtreecommitdiffstats
path: root/test/update-release-info/update-release-info.py
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2014-03-09 04:20:26 (GMT)
committerWilliam Deegan <bill@baddogconsulting.com>2014-03-09 04:20:26 (GMT)
commite9c54eebe5f3ff43cd51a83cc5ed9a90f9ea9ed0 (patch)
tree957d4ff6644d1c640d1573b763689753c0cd9efd /test/update-release-info/update-release-info.py
parent2706e890c8d969f8e3269b28598d89e286305b21 (diff)
downloadSCons-e9c54eebe5f3ff43cd51a83cc5ed9a90f9ea9ed0.zip
SCons-e9c54eebe5f3ff43cd51a83cc5ed9a90f9ea9ed0.tar.gz
SCons-e9c54eebe5f3ff43cd51a83cc5ed9a90f9ea9ed0.tar.bz2
fix test/update-release-info/update-release-info.py to work with copyright year range rather than the previously list of each year separated by commas
Diffstat (limited to 'test/update-release-info/update-release-info.py')
-rw-r--r--test/update-release-info/update-release-info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/update-release-info/update-release-info.py b/test/update-release-info/update-release-info.py
index d3125c7..e44aa99 100644
--- a/test/update-release-info/update-release-info.py
+++ b/test/update-release-info/update-release-info.py
@@ -201,7 +201,7 @@ RELEASE 2.0.0.alpha.yyyymmdd - NEW DATE WILL BE INSERTED HERE
""", mode = 'r')
-years = ', '.join(map(str, range(2001, this_year + 1)))
+years = '2001 - %d'%(this_year + 1)
test.must_match(SConstruct, """
month_year = 'MONTH YEAR'
copyright_years = %s