From 1ecf5ebba1d1e394906fed587211e58263be864e Mon Sep 17 00:00:00 2001 From: John Dickinson Date: Mon, 19 Mar 2012 13:45:34 -0500 Subject: [PATCH] updated copyright date for all files Change-Id: Ifd909d3561c2647770a7e0caa3cd91acd1b4f298 --- bin/swift | 2 +- bin/swift-account-audit | 2 +- bin/swift-account-auditor | 2 +- bin/swift-account-reaper | 2 +- bin/swift-account-replicator | 2 +- bin/swift-account-server | 2 +- bin/swift-bench | 2 +- bin/swift-container-auditor | 2 +- bin/swift-container-replicator | 2 +- bin/swift-container-server | 2 +- bin/swift-container-sync | 2 +- bin/swift-container-updater | 2 +- bin/swift-dispersion-populate | 2 +- bin/swift-dispersion-report | 2 +- bin/swift-drive-audit | 2 +- bin/swift-get-nodes | 2 +- bin/swift-init | 2 +- bin/swift-object-auditor | 2 +- bin/swift-object-expirer | 2 +- bin/swift-object-info | 2 +- bin/swift-object-replicator | 2 +- bin/swift-object-server | 2 +- bin/swift-object-updater | 2 +- bin/swift-proxy-server | 2 +- bin/swift-ring-builder | 2 +- doc/source/conf.py | 2 +- doc/source/development_guidelines.rst | 2 +- setup.py | 2 +- swift/account/auditor.py | 2 +- swift/account/reaper.py | 2 +- swift/account/replicator.py | 2 +- swift/account/server.py | 2 +- swift/common/bench.py | 2 +- swift/common/bufferedhttp.py | 2 +- swift/common/client.py | 2 +- swift/common/constraints.py | 2 +- swift/common/daemon.py | 2 +- swift/common/db.py | 2 +- swift/common/db_replicator.py | 2 +- swift/common/direct_client.py | 2 +- swift/common/exceptions.py | 2 +- swift/common/manager.py | 2 +- swift/common/memcached.py | 2 +- swift/common/middleware/acl.py | 2 +- swift/common/middleware/catch_errors.py | 2 +- swift/common/middleware/cname_lookup.py | 2 +- swift/common/middleware/domain_remap.py | 2 +- swift/common/middleware/healthcheck.py | 2 +- swift/common/middleware/memcache.py | 2 +- swift/common/middleware/recon.py | 2 +- swift/common/middleware/staticweb.py | 2 +- swift/common/middleware/tempurl.py | 2 +- swift/common/ring/builder.py | 2 +- swift/common/ring/ring.py | 2 +- swift/common/utils.py | 2 +- swift/common/wsgi.py | 2 +- swift/container/auditor.py | 2 +- swift/container/replicator.py | 2 +- swift/container/server.py | 2 +- swift/container/sync.py | 2 +- swift/container/updater.py | 2 +- swift/obj/auditor.py | 2 +- swift/obj/expirer.py | 2 +- swift/obj/replicator.py | 2 +- swift/obj/server.py | 2 +- swift/obj/updater.py | 2 +- swift/proxy/server.py | 2 +- test/functional/swift.py | 2 +- test/functional/tests.py | 2 +- test/probe/common.py | 2 +- test/probe/test_account_failures.py | 2 +- test/probe/test_container_failures.py | 2 +- test/probe/test_object_async_update.py | 2 +- test/probe/test_object_failures.py | 2 +- test/probe/test_object_handoff.py | 2 +- test/probe/test_running_with_each_type_down.py | 2 +- test/unit/account/test_auditor.py | 2 +- test/unit/account/test_reaper.py | 2 +- test/unit/account/test_replicator.py | 2 +- test/unit/account/test_server.py | 2 +- test/unit/common/middleware/test_acl.py | 2 +- test/unit/common/middleware/test_cname_lookup.py | 2 +- test/unit/common/middleware/test_domain_remap.py | 2 +- test/unit/common/middleware/test_except.py | 2 +- test/unit/common/middleware/test_healthcheck.py | 2 +- test/unit/common/middleware/test_memcache.py | 2 +- test/unit/common/middleware/test_ratelimit.py | 2 +- test/unit/common/ring/test_builder.py | 2 +- test/unit/common/ring/test_ring.py | 2 +- test/unit/common/test_bench.py | 2 +- test/unit/common/test_bufferedhttp.py | 2 +- test/unit/common/test_client.py | 2 +- test/unit/common/test_constraints.py | 2 +- test/unit/common/test_daemon.py | 2 +- test/unit/common/test_db.py | 2 +- test/unit/common/test_db_replicator.py | 2 +- test/unit/common/test_direct_client.py | 2 +- test/unit/common/test_exceptions.py | 2 +- test/unit/common/test_init.py | 2 +- test/unit/common/test_manager.py | 2 +- test/unit/common/test_memcached.py | 2 +- test/unit/common/test_utils.py | 2 +- test/unit/container/test_auditor.py | 2 +- test/unit/container/test_replicator.py | 2 +- test/unit/container/test_server.py | 2 +- test/unit/container/test_sync.py | 2 +- test/unit/container/test_updater.py | 2 +- test/unit/obj/test_auditor.py | 2 +- test/unit/obj/test_replicator.py | 2 +- test/unit/obj/test_server.py | 2 +- test/unit/obj/test_updater.py | 2 +- test/unit/proxy/test_server.py | 2 +- 112 files changed, 112 insertions(+), 112 deletions(-) diff --git a/bin/swift b/bin/swift index befcac4be4..0cac5d659c 100755 --- a/bin/swift +++ b/bin/swift @@ -1,5 +1,5 @@ #!/usr/bin/python -u -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-account-audit b/bin/swift-account-audit index 73441c1ba9..43a0a0c6f0 100755 --- a/bin/swift-account-audit +++ b/bin/swift-account-audit @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-account-auditor b/bin/swift-account-auditor index f654dbce94..a342f6ae2f 100755 --- a/bin/swift-account-auditor +++ b/bin/swift-account-auditor @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-account-reaper b/bin/swift-account-reaper index e318b386c7..2f07153dfa 100755 --- a/bin/swift-account-reaper +++ b/bin/swift-account-reaper @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-account-replicator b/bin/swift-account-replicator index 2adbd9ac46..b112f015d7 100755 --- a/bin/swift-account-replicator +++ b/bin/swift-account-replicator @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-account-server b/bin/swift-account-server index 6a1e459b76..13dd048bf6 100755 --- a/bin/swift-account-server +++ b/bin/swift-account-server @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-bench b/bin/swift-bench index 7d20ef353a..e5b6bb4064 100755 --- a/bin/swift-bench +++ b/bin/swift-bench @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-container-auditor b/bin/swift-container-auditor index d445840c1d..b49a290f33 100755 --- a/bin/swift-container-auditor +++ b/bin/swift-container-auditor @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-container-replicator b/bin/swift-container-replicator index d88f069655..62b803c0c4 100755 --- a/bin/swift-container-replicator +++ b/bin/swift-container-replicator @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-container-server b/bin/swift-container-server index e154c51633..b47dce017f 100755 --- a/bin/swift-container-server +++ b/bin/swift-container-server @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-container-sync b/bin/swift-container-sync index 8310faa802..7b6378c4c7 100755 --- a/bin/swift-container-sync +++ b/bin/swift-container-sync @@ -1,5 +1,5 @@ #!/usr/bin/python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-container-updater b/bin/swift-container-updater index 16ff3f4e62..b80cbda092 100755 --- a/bin/swift-container-updater +++ b/bin/swift-container-updater @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-dispersion-populate b/bin/swift-dispersion-populate index c5df32f741..a2cde8ac20 100755 --- a/bin/swift-dispersion-populate +++ b/bin/swift-dispersion-populate @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-dispersion-report b/bin/swift-dispersion-report index 90458097bc..12bec27235 100755 --- a/bin/swift-dispersion-report +++ b/bin/swift-dispersion-report @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-drive-audit b/bin/swift-drive-audit index 514db51a30..31edf9ca87 100755 --- a/bin/swift-drive-audit +++ b/bin/swift-drive-audit @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-get-nodes b/bin/swift-get-nodes index e7d13817af..4ca9528656 100755 --- a/bin/swift-get-nodes +++ b/bin/swift-get-nodes @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-init b/bin/swift-init index 7389a864a2..17dcbd0be1 100755 --- a/bin/swift-init +++ b/bin/swift-init @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-object-auditor b/bin/swift-object-auditor index 53494f4cba..2a2d38bfcd 100755 --- a/bin/swift-object-auditor +++ b/bin/swift-object-auditor @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-object-expirer b/bin/swift-object-expirer index fa4a2a0671..f3dbbdd7c7 100755 --- a/bin/swift-object-expirer +++ b/bin/swift-object-expirer @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-object-info b/bin/swift-object-info index f1b559be87..46ace435d9 100755 --- a/bin/swift-object-info +++ b/bin/swift-object-info @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-object-replicator b/bin/swift-object-replicator index d84d892b4b..c1a4cd3079 100755 --- a/bin/swift-object-replicator +++ b/bin/swift-object-replicator @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-object-server b/bin/swift-object-server index 225c21dffc..3d2aa7e5b8 100755 --- a/bin/swift-object-server +++ b/bin/swift-object-server @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-object-updater b/bin/swift-object-updater index 56048de081..c7f04c965d 100755 --- a/bin/swift-object-updater +++ b/bin/swift-object-updater @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-proxy-server b/bin/swift-proxy-server index 66c8dee8ee..9aa938ddb3 100755 --- a/bin/swift-proxy-server +++ b/bin/swift-proxy-server @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/bin/swift-ring-builder b/bin/swift-ring-builder index 3288e06c36..8bb3d19883 100755 --- a/bin/swift-ring-builder +++ b/bin/swift-ring-builder @@ -1,5 +1,5 @@ #! /usr/bin/env python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/doc/source/conf.py b/doc/source/conf.py index 09b58b4268..3a8fc7c5df 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/doc/source/development_guidelines.rst b/doc/source/development_guidelines.rst index 70e2993752..5682233bfc 100644 --- a/doc/source/development_guidelines.rst +++ b/doc/source/development_guidelines.rst @@ -64,7 +64,7 @@ License and Copyright Every source file should have the following copyright and license statement at the top:: - # Copyright (c) 2010-2011 OpenStack, LLC. + # Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/setup.py b/setup.py index 06131565ab..d195d34f6a 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ #!/usr/bin/python -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/account/auditor.py b/swift/account/auditor.py index b9ad370b9c..f5f9f3e76a 100644 --- a/swift/account/auditor.py +++ b/swift/account/auditor.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/account/reaper.py b/swift/account/reaper.py index d55001be8a..227ab1c73f 100644 --- a/swift/account/reaper.py +++ b/swift/account/reaper.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/account/replicator.py b/swift/account/replicator.py index aa131c9c8d..56ddcddd60 100644 --- a/swift/account/replicator.py +++ b/swift/account/replicator.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/account/server.py b/swift/account/server.py index 953e5a918e..800b3c0fa7 100644 --- a/swift/account/server.py +++ b/swift/account/server.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/bench.py b/swift/common/bench.py index 2d230cdfef..21085d8691 100644 --- a/swift/common/bench.py +++ b/swift/common/bench.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/bufferedhttp.py b/swift/common/bufferedhttp.py index 7f6f4a9f49..5d79219925 100644 --- a/swift/common/bufferedhttp.py +++ b/swift/common/bufferedhttp.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/client.py b/swift/common/client.py index 2a06f97333..8fcb7e983a 100644 --- a/swift/common/client.py +++ b/swift/common/client.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/constraints.py b/swift/common/constraints.py index ad5a37b9a8..235dcca8ed 100644 --- a/swift/common/constraints.py +++ b/swift/common/constraints.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/daemon.py b/swift/common/daemon.py index abcc8dea1e..87f32155cb 100644 --- a/swift/common/daemon.py +++ b/swift/common/daemon.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/db.py b/swift/common/db.py index cb973eb290..3a09bfa9d2 100644 --- a/swift/common/db.py +++ b/swift/common/db.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/db_replicator.py b/swift/common/db_replicator.py index b27ac43380..1a8f56f788 100644 --- a/swift/common/db_replicator.py +++ b/swift/common/db_replicator.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/direct_client.py b/swift/common/direct_client.py index 1735f3bad6..76f686acfa 100644 --- a/swift/common/direct_client.py +++ b/swift/common/direct_client.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/exceptions.py b/swift/common/exceptions.py index df4b93b37f..369b2f69f0 100644 --- a/swift/common/exceptions.py +++ b/swift/common/exceptions.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/manager.py b/swift/common/manager.py index eb84279df2..bdd76e173e 100644 --- a/swift/common/manager.py +++ b/swift/common/manager.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/memcached.py b/swift/common/memcached.py index 89d1720db8..ecd9332401 100644 --- a/swift/common/memcached.py +++ b/swift/common/memcached.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/middleware/acl.py b/swift/common/middleware/acl.py index 60d8bcffe2..5156e9461b 100644 --- a/swift/common/middleware/acl.py +++ b/swift/common/middleware/acl.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/middleware/catch_errors.py b/swift/common/middleware/catch_errors.py index 55a05400f5..6abd5f7b3f 100644 --- a/swift/common/middleware/catch_errors.py +++ b/swift/common/middleware/catch_errors.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/middleware/cname_lookup.py b/swift/common/middleware/cname_lookup.py index 8ea9f88071..b58369b281 100644 --- a/swift/common/middleware/cname_lookup.py +++ b/swift/common/middleware/cname_lookup.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/middleware/domain_remap.py b/swift/common/middleware/domain_remap.py index 7846a05f29..c23e2f2b29 100644 --- a/swift/common/middleware/domain_remap.py +++ b/swift/common/middleware/domain_remap.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/middleware/healthcheck.py b/swift/common/middleware/healthcheck.py index 072ce24c85..433b69e39b 100644 --- a/swift/common/middleware/healthcheck.py +++ b/swift/common/middleware/healthcheck.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/middleware/memcache.py b/swift/common/middleware/memcache.py index ba829d1e69..eb988bd394 100644 --- a/swift/common/middleware/memcache.py +++ b/swift/common/middleware/memcache.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/middleware/recon.py b/swift/common/middleware/recon.py index 86d28b96a7..b1e15d0956 100644 --- a/swift/common/middleware/recon.py +++ b/swift/common/middleware/recon.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/middleware/staticweb.py b/swift/common/middleware/staticweb.py index 24199c9142..b4eb906690 100644 --- a/swift/common/middleware/staticweb.py +++ b/swift/common/middleware/staticweb.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/middleware/tempurl.py b/swift/common/middleware/tempurl.py index 90be670b84..97419a14c3 100644 --- a/swift/common/middleware/tempurl.py +++ b/swift/common/middleware/tempurl.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/ring/builder.py b/swift/common/ring/builder.py index efd6ef4e3f..8ae7e28796 100644 --- a/swift/common/ring/builder.py +++ b/swift/common/ring/builder.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/ring/ring.py b/swift/common/ring/ring.py index 5f875875c7..682b75e124 100644 --- a/swift/common/ring/ring.py +++ b/swift/common/ring/ring.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/utils.py b/swift/common/utils.py index c7c752e33f..47edce8c1c 100644 --- a/swift/common/utils.py +++ b/swift/common/utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/common/wsgi.py b/swift/common/wsgi.py index edbab182f1..ddfd42b543 100644 --- a/swift/common/wsgi.py +++ b/swift/common/wsgi.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/container/auditor.py b/swift/container/auditor.py index 6d80de6669..0735c28119 100644 --- a/swift/container/auditor.py +++ b/swift/container/auditor.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/container/replicator.py b/swift/container/replicator.py index 4cdc03b884..5670c84c89 100644 --- a/swift/container/replicator.py +++ b/swift/container/replicator.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/container/server.py b/swift/container/server.py index dea558736f..8a18cfdbaf 100644 --- a/swift/container/server.py +++ b/swift/container/server.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/container/sync.py b/swift/container/sync.py index 1e99051afd..f0bebce25e 100644 --- a/swift/container/sync.py +++ b/swift/container/sync.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/container/updater.py b/swift/container/updater.py index aaf722178b..d95fb0a767 100644 --- a/swift/container/updater.py +++ b/swift/container/updater.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/obj/auditor.py b/swift/obj/auditor.py index 89644a6782..43c98c51ac 100644 --- a/swift/obj/auditor.py +++ b/swift/obj/auditor.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/obj/expirer.py b/swift/obj/expirer.py index eab5d9269d..07462fa8e4 100644 --- a/swift/obj/expirer.py +++ b/swift/obj/expirer.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/obj/replicator.py b/swift/obj/replicator.py index f70115c8e7..23d55ada9c 100644 --- a/swift/obj/replicator.py +++ b/swift/obj/replicator.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/obj/server.py b/swift/obj/server.py index f6315071fc..9cca16ba5d 100644 --- a/swift/obj/server.py +++ b/swift/obj/server.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/obj/updater.py b/swift/obj/updater.py index f1086bc6c7..39208fc97c 100644 --- a/swift/obj/updater.py +++ b/swift/obj/updater.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/swift/proxy/server.py b/swift/proxy/server.py index dc8f3eff89..17613b8c62 100644 --- a/swift/proxy/server.py +++ b/swift/proxy/server.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/functional/swift.py b/test/functional/swift.py index 878c276241..7ef3f41156 100644 --- a/test/functional/swift.py +++ b/test/functional/swift.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/functional/tests.py b/test/functional/tests.py index 8f89918849..b25b4fd75c 100644 --- a/test/functional/tests.py +++ b/test/functional/tests.py @@ -1,5 +1,5 @@ #!/usr/bin/python -u -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/probe/common.py b/test/probe/common.py index 1d01007c72..90a490bf68 100644 --- a/test/probe/common.py +++ b/test/probe/common.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/probe/test_account_failures.py b/test/probe/test_account_failures.py index 29bfb6fc6f..33320ec7a5 100755 --- a/test/probe/test_account_failures.py +++ b/test/probe/test_account_failures.py @@ -1,5 +1,5 @@ #!/usr/bin/python -u -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/probe/test_container_failures.py b/test/probe/test_container_failures.py index 005ece6290..7be2ab3a17 100755 --- a/test/probe/test_container_failures.py +++ b/test/probe/test_container_failures.py @@ -1,5 +1,5 @@ #!/usr/bin/python -u -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/probe/test_object_async_update.py b/test/probe/test_object_async_update.py index 818f1dd740..f1ca69da3a 100755 --- a/test/probe/test_object_async_update.py +++ b/test/probe/test_object_async_update.py @@ -1,5 +1,5 @@ #!/usr/bin/python -u -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/probe/test_object_failures.py b/test/probe/test_object_failures.py index 1d1627cce3..64b3bc43b0 100755 --- a/test/probe/test_object_failures.py +++ b/test/probe/test_object_failures.py @@ -1,5 +1,5 @@ #!/usr/bin/python -u -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/probe/test_object_handoff.py b/test/probe/test_object_handoff.py index 8a4f9986ab..e2f72b98cc 100755 --- a/test/probe/test_object_handoff.py +++ b/test/probe/test_object_handoff.py @@ -1,5 +1,5 @@ #!/usr/bin/python -u -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/probe/test_running_with_each_type_down.py b/test/probe/test_running_with_each_type_down.py index cb4a061540..394c42da10 100755 --- a/test/probe/test_running_with_each_type_down.py +++ b/test/probe/test_running_with_each_type_down.py @@ -1,5 +1,5 @@ #!/usr/bin/python -u -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/account/test_auditor.py b/test/unit/account/test_auditor.py index 31663d26a5..11b3bc384d 100644 --- a/test/unit/account/test_auditor.py +++ b/test/unit/account/test_auditor.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/account/test_reaper.py b/test/unit/account/test_reaper.py index daa81d931b..03f889e521 100644 --- a/test/unit/account/test_reaper.py +++ b/test/unit/account/test_reaper.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/account/test_replicator.py b/test/unit/account/test_replicator.py index 17f09a5e53..23d0027b2e 100644 --- a/test/unit/account/test_replicator.py +++ b/test/unit/account/test_replicator.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/account/test_server.py b/test/unit/account/test_server.py index 879592c4ad..afa90b9e0d 100644 --- a/test/unit/account/test_server.py +++ b/test/unit/account/test_server.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/middleware/test_acl.py b/test/unit/common/middleware/test_acl.py index a6183eaad2..1a8f84e6b3 100644 --- a/test/unit/common/middleware/test_acl.py +++ b/test/unit/common/middleware/test_acl.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/middleware/test_cname_lookup.py b/test/unit/common/middleware/test_cname_lookup.py index 423726bb03..1cb3df04a8 100644 --- a/test/unit/common/middleware/test_cname_lookup.py +++ b/test/unit/common/middleware/test_cname_lookup.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/middleware/test_domain_remap.py b/test/unit/common/middleware/test_domain_remap.py index b7b000a053..7139ad7769 100644 --- a/test/unit/common/middleware/test_domain_remap.py +++ b/test/unit/common/middleware/test_domain_remap.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/middleware/test_except.py b/test/unit/common/middleware/test_except.py index d110723a31..005792dd27 100644 --- a/test/unit/common/middleware/test_except.py +++ b/test/unit/common/middleware/test_except.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/middleware/test_healthcheck.py b/test/unit/common/middleware/test_healthcheck.py index 81872b7ed0..c898d38ec5 100644 --- a/test/unit/common/middleware/test_healthcheck.py +++ b/test/unit/common/middleware/test_healthcheck.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/middleware/test_memcache.py b/test/unit/common/middleware/test_memcache.py index 4610a779bf..6b94bd1dc5 100644 --- a/test/unit/common/middleware/test_memcache.py +++ b/test/unit/common/middleware/test_memcache.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/middleware/test_ratelimit.py b/test/unit/common/middleware/test_ratelimit.py index 940c229a56..299dd84f7b 100644 --- a/test/unit/common/middleware/test_ratelimit.py +++ b/test/unit/common/middleware/test_ratelimit.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/ring/test_builder.py b/test/unit/common/ring/test_builder.py index 7a6f66d715..f2be578cd6 100644 --- a/test/unit/common/ring/test_builder.py +++ b/test/unit/common/ring/test_builder.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/ring/test_ring.py b/test/unit/common/ring/test_ring.py index 1d459ad919..ce79785527 100644 --- a/test/unit/common/ring/test_ring.py +++ b/test/unit/common/ring/test_ring.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/test_bench.py b/test/unit/common/test_bench.py index 6cec05f3d3..8f748d70b0 100644 --- a/test/unit/common/test_bench.py +++ b/test/unit/common/test_bench.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/test_bufferedhttp.py b/test/unit/common/test_bufferedhttp.py index ba0ab0e3a9..7ef7b21c2f 100644 --- a/test/unit/common/test_bufferedhttp.py +++ b/test/unit/common/test_bufferedhttp.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/test_client.py b/test/unit/common/test_client.py index c182c70fe2..d527e6b1cd 100644 --- a/test/unit/common/test_client.py +++ b/test/unit/common/test_client.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/test_constraints.py b/test/unit/common/test_constraints.py index b87d310ecb..478b2a8a94 100644 --- a/test/unit/common/test_constraints.py +++ b/test/unit/common/test_constraints.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/test_daemon.py b/test/unit/common/test_daemon.py index 1d54e78c3e..f2da86965b 100644 --- a/test/unit/common/test_daemon.py +++ b/test/unit/common/test_daemon.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/test_db.py b/test/unit/common/test_db.py index 48b02d9480..fcda936af2 100644 --- a/test/unit/common/test_db.py +++ b/test/unit/common/test_db.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/test_db_replicator.py b/test/unit/common/test_db_replicator.py index 30db570868..334a9b8a26 100644 --- a/test/unit/common/test_db_replicator.py +++ b/test/unit/common/test_db_replicator.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/test_direct_client.py b/test/unit/common/test_direct_client.py index 133e779ee5..d1996e58f7 100644 --- a/test/unit/common/test_direct_client.py +++ b/test/unit/common/test_direct_client.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/test_exceptions.py b/test/unit/common/test_exceptions.py index 6e7691137a..339e311d19 100644 --- a/test/unit/common/test_exceptions.py +++ b/test/unit/common/test_exceptions.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/test_init.py b/test/unit/common/test_init.py index b86e89d0b3..117a4a4fc9 100644 --- a/test/unit/common/test_init.py +++ b/test/unit/common/test_init.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/test_manager.py b/test/unit/common/test_manager.py index 1e58719d66..be8db5975a 100644 --- a/test/unit/common/test_manager.py +++ b/test/unit/common/test_manager.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/test_memcached.py b/test/unit/common/test_memcached.py index 73228c9ebd..dff6e8073a 100644 --- a/test/unit/common/test_memcached.py +++ b/test/unit/common/test_memcached.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/common/test_utils.py b/test/unit/common/test_utils.py index 5e30615a98..f7e33c4faf 100644 --- a/test/unit/common/test_utils.py +++ b/test/unit/common/test_utils.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/container/test_auditor.py b/test/unit/container/test_auditor.py index 220c80f14c..8d753949d2 100644 --- a/test/unit/container/test_auditor.py +++ b/test/unit/container/test_auditor.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/container/test_replicator.py b/test/unit/container/test_replicator.py index 05ecd2938b..6f7e9bacdb 100644 --- a/test/unit/container/test_replicator.py +++ b/test/unit/container/test_replicator.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/container/test_server.py b/test/unit/container/test_server.py index b4c8df8cd5..fef364f301 100644 --- a/test/unit/container/test_server.py +++ b/test/unit/container/test_server.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/container/test_sync.py b/test/unit/container/test_sync.py index 78489b9570..e0471ee261 100644 --- a/test/unit/container/test_sync.py +++ b/test/unit/container/test_sync.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/container/test_updater.py b/test/unit/container/test_updater.py index 4c02a71084..6e1fe32bec 100644 --- a/test/unit/container/test_updater.py +++ b/test/unit/container/test_updater.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/obj/test_auditor.py b/test/unit/obj/test_auditor.py index cc08c2cd60..a7429f7da3 100644 --- a/test/unit/obj/test_auditor.py +++ b/test/unit/obj/test_auditor.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/obj/test_replicator.py b/test/unit/obj/test_replicator.py index bd54ec8905..bdefc50c13 100644 --- a/test/unit/obj/test_replicator.py +++ b/test/unit/obj/test_replicator.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/obj/test_server.py b/test/unit/obj/test_server.py index d840c6dce9..075700e62c 100644 --- a/test/unit/obj/test_server.py +++ b/test/unit/obj/test_server.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/obj/test_updater.py b/test/unit/obj/test_updater.py index 1584fff19c..3b88292152 100644 --- a/test/unit/obj/test_updater.py +++ b/test/unit/obj/test_updater.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/test/unit/proxy/test_server.py b/test/unit/proxy/test_server.py index 68dd9ea2ca..364370e85c 100644 --- a/test/unit/proxy/test_server.py +++ b/test/unit/proxy/test_server.py @@ -1,4 +1,4 @@ -# Copyright (c) 2010-2011 OpenStack, LLC. +# Copyright (c) 2010-2012 OpenStack, LLC. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License.