diff options
author | William Deegan <bill@baddogconsulting.com> | 2014-03-09 04:20:26 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2014-03-09 04:20:26 (GMT) |
commit | e9c54eebe5f3ff43cd51a83cc5ed9a90f9ea9ed0 (patch) | |
tree | 957d4ff6644d1c640d1573b763689753c0cd9efd | |
parent | 2706e890c8d969f8e3269b28598d89e286305b21 (diff) | |
download | SCons-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
-rw-r--r-- | test/update-release-info/update-release-info.py | 2 |
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 |