Merge branch 'master' into yaml
This commit is contained in:
@ -6,6 +6,8 @@ import datetime
|
||||
import ast
|
||||
import collections
|
||||
|
||||
__version__ = 'X.Y.Z'
|
||||
|
||||
# we do not use the nicer sys.version_info.major
|
||||
# for compatibility with Python < 2.7
|
||||
if sys.version_info[0] > 2:
|
||||
@ -179,8 +181,8 @@ def autogenerated_notice():
|
||||
current_year = datetime.date.today().year
|
||||
year_range = '2015-{0}'.format(current_year)
|
||||
s = []
|
||||
s.append('# This file is autogenerated by Autocmake http://autocmake.org')
|
||||
s.append('# Copyright (c) {0} by Radovan Bast and Jonas Juselius'.format(year_range))
|
||||
s.append('# This file is autogenerated by Autocmake v{0} http://autocmake.org'.format(__version__))
|
||||
s.append('# Copyright (c) {0} by Radovan Bast, Jonas Juselius, and contributors.'.format(year_range))
|
||||
return '\n'.join(s)
|
||||
|
||||
# ------------------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user