diff options
Diffstat (limited to 'distribution/bin/fixCopyright.py')
-rwxr-xr-x | distribution/bin/fixCopyright.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distribution/bin/fixCopyright.py b/distribution/bin/fixCopyright.py index fd3a8551e62..783b891883c 100755 --- a/distribution/bin/fixCopyright.py +++ b/distribution/bin/fixCopyright.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # ********************************************************************** # -# Copyright (c) 2003-2009 ZeroC, Inc. All rights reserved. +# Copyright (c) 2003-2010 ZeroC, Inc. All rights reserved. # # This copy of Ice is licensed to you under the terms described in the # ICE_LICENSE file included in this distribution. @@ -30,6 +30,6 @@ for x in sys.argv[1:]: sys.exit(1) cpatMatch = "Copyright \\(c\\) 20[0-9][0-9]-(20[0-9][0-9]) ZeroC" -copyright = "2009" +copyright = "2010" for f in FixUtil.getTrackedFiles(): FixUtil.fileMatchAndReplace(f, [(cpatMatch, copyright)], False) |