summaryrefslogtreecommitdiff
path: root/distribution/bin/fixCopyright.py
diff options
context:
space:
mode:
Diffstat (limited to 'distribution/bin/fixCopyright.py')
-rwxr-xr-xdistribution/bin/fixCopyright.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/distribution/bin/fixCopyright.py b/distribution/bin/fixCopyright.py
index 783b891883c..8b8debd0127 100755
--- a/distribution/bin/fixCopyright.py
+++ b/distribution/bin/fixCopyright.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# **********************************************************************
#
-# Copyright (c) 2003-2010 ZeroC, Inc. All rights reserved.
+# Copyright (c) 2003-2011 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 = "2010"
+copyright = "2011"
for f in FixUtil.getTrackedFiles():
FixUtil.fileMatchAndReplace(f, [(cpatMatch, copyright)], False)