summaryrefslogtreecommitdiff
path: root/test/update-release-info
diff options
context:
space:
mode:
authorWilliam Deegan <bill@baddogconsulting.com>2014-03-08 20:20:26 -0800
committerWilliam Deegan <bill@baddogconsulting.com>2014-03-08 20:20:26 -0800
commitc20feb822d7b125b2e373805ee8266b68a2df8a8 (patch)
tree957d4ff6644d1c640d1573b763689753c0cd9efd /test/update-release-info
parent822e6b71690fde35d73b8075f03f1fac3244918f (diff)
downloadscons-c20feb822d7b125b2e373805ee8266b68a2df8a8.tar.gz
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')
-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 d3125c7b..e44aa990 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