summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--novaclient/__init__.py2
-rw-r--r--novaclient/base.py2
-rw-r--r--novaclient/client.py2
-rw-r--r--novaclient/extension.py2
-rw-r--r--novaclient/openstack/common/setup.py2
-rw-r--r--novaclient/openstack/common/strutils.py2
-rw-r--r--novaclient/openstack/common/timeutils.py2
-rw-r--r--novaclient/service_catalog.py2
-rw-r--r--novaclient/shell.py2
-rw-r--r--novaclient/v1_1/__init__.py2
-rw-r--r--novaclient/v1_1/aggregates.py2
-rw-r--r--novaclient/v1_1/availability_zones.py2
-rw-r--r--novaclient/v1_1/base.py2
-rw-r--r--novaclient/v1_1/certs.py2
-rw-r--r--novaclient/v1_1/client.py2
-rw-r--r--novaclient/v1_1/cloudpipe.py2
-rw-r--r--novaclient/v1_1/contrib/list_extensions.py2
-rw-r--r--novaclient/v1_1/contrib/tenant_networks.py2
-rw-r--r--novaclient/v1_1/flavor_access.py2
-rw-r--r--novaclient/v1_1/floating_ips.py2
-rw-r--r--novaclient/v1_1/fping.py2
-rw-r--r--novaclient/v1_1/hosts.py2
-rw-r--r--novaclient/v1_1/hypervisors.py2
-rw-r--r--novaclient/v1_1/keypairs.py2
-rw-r--r--novaclient/v1_1/limits.py2
-rw-r--r--novaclient/v1_1/networks.py2
-rw-r--r--novaclient/v1_1/quota_classes.py2
-rw-r--r--novaclient/v1_1/quotas.py2
-rw-r--r--novaclient/v1_1/security_group_rules.py2
-rw-r--r--novaclient/v1_1/security_groups.py2
-rw-r--r--novaclient/v1_1/servers.py2
-rw-r--r--novaclient/v1_1/shell.py2
-rw-r--r--novaclient/v1_1/virtual_interfaces.py2
-rw-r--r--setup.py2
-rw-r--r--tests/test_auth_plugins.py2
-rw-r--r--tests/test_client.py2
-rw-r--r--tests/test_discover.py2
-rw-r--r--tests/v1_1/contrib/fakes.py2
-rw-r--r--tests/v1_1/contrib/test_tenant_networks.py2
-rw-r--r--tests/v1_1/fakes.py2
-rw-r--r--tests/v1_1/test_aggregates.py2
-rw-r--r--tests/v1_1/test_availability_zone.py2
-rw-r--r--tests/v1_1/test_flavor_access.py2
-rw-r--r--tests/v1_1/test_fping.py2
-rw-r--r--tests/v1_1/test_hypervisors.py2
-rw-r--r--tests/v1_1/test_quota_classes.py2
-rw-r--r--tests/v1_1/test_quotas.py2
-rw-r--r--tests/v1_1/test_shell.py2
-rw-r--r--tools/install_venv.py2
49 files changed, 49 insertions, 49 deletions
diff --git a/novaclient/__init__.py b/novaclient/__init__.py
index fa6b8e59..2cc5baa6 100644
--- a/novaclient/__init__.py
+++ b/novaclient/__init__.py
@@ -1,4 +1,4 @@
-# Copyright 2012 OpenStack LLC.
+# Copyright 2012 OpenStack Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
diff --git a/novaclient/base.py b/novaclient/base.py
index 0898785c..db9a7548 100644
--- a/novaclient/base.py
+++ b/novaclient/base.py
@@ -1,6 +1,6 @@
# Copyright 2010 Jacob Kaplan-Moss
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/client.py b/novaclient/client.py
index b262c6c3..e49aa4c8 100644
--- a/novaclient/client.py
+++ b/novaclient/client.py
@@ -1,5 +1,5 @@
# Copyright 2010 Jacob Kaplan-Moss
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# Copyright 2011 Piston Cloud Computing, Inc.
# All Rights Reserved.
diff --git a/novaclient/extension.py b/novaclient/extension.py
index 7c91a8e8..ac105070 100644
--- a/novaclient/extension.py
+++ b/novaclient/extension.py
@@ -1,4 +1,4 @@
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/openstack/common/setup.py b/novaclient/openstack/common/setup.py
index 889276f9..61c01dc8 100644
--- a/novaclient/openstack/common/setup.py
+++ b/novaclient/openstack/common/setup.py
@@ -1,6 +1,6 @@
# vim: tabstop=4 shiftwidth=4 softtabstop=4
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/openstack/common/strutils.py b/novaclient/openstack/common/strutils.py
index 7813b642..841a0f82 100644
--- a/novaclient/openstack/common/strutils.py
+++ b/novaclient/openstack/common/strutils.py
@@ -1,6 +1,6 @@
# vim: tabstop=4 shiftwidth=4 softtabstop=4
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/openstack/common/timeutils.py b/novaclient/openstack/common/timeutils.py
index 86004391..15582c82 100644
--- a/novaclient/openstack/common/timeutils.py
+++ b/novaclient/openstack/common/timeutils.py
@@ -1,6 +1,6 @@
# vim: tabstop=4 shiftwidth=4 softtabstop=4
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/service_catalog.py b/novaclient/service_catalog.py
index f4a5f1ad..d3fefe18 100644
--- a/novaclient/service_catalog.py
+++ b/novaclient/service_catalog.py
@@ -1,4 +1,4 @@
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# Copyright 2011, Piston Cloud Computing, Inc.
#
# All Rights Reserved.
diff --git a/novaclient/shell.py b/novaclient/shell.py
index 7d7c5d3f..bf56b0fd 100644
--- a/novaclient/shell.py
+++ b/novaclient/shell.py
@@ -1,5 +1,5 @@
# Copyright 2010 Jacob Kaplan-Moss
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/v1_1/__init__.py b/novaclient/v1_1/__init__.py
index c8538c1e..8958eb45 100644
--- a/novaclient/v1_1/__init__.py
+++ b/novaclient/v1_1/__init__.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2012 OpenStack, LLC.
+# Copyright (c) 2012 OpenStack Foundation
#
# All Rights Reserved.
#
diff --git a/novaclient/v1_1/aggregates.py b/novaclient/v1_1/aggregates.py
index 2a57703f..576a81a4 100644
--- a/novaclient/v1_1/aggregates.py
+++ b/novaclient/v1_1/aggregates.py
@@ -1,4 +1,4 @@
-# Copyright 2012 OpenStack LLC.
+# Copyright 2012 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/v1_1/availability_zones.py b/novaclient/v1_1/availability_zones.py
index 7b39b300..41362aa2 100644
--- a/novaclient/v1_1/availability_zones.py
+++ b/novaclient/v1_1/availability_zones.py
@@ -1,4 +1,4 @@
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# Copyright 2013 IBM Corp.
# All Rights Reserved.
#
diff --git a/novaclient/v1_1/base.py b/novaclient/v1_1/base.py
index fce840b1..af6e689c 100644
--- a/novaclient/v1_1/base.py
+++ b/novaclient/v1_1/base.py
@@ -1,6 +1,6 @@
# Copyright 2010 Jacob Kaplan-Moss
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/v1_1/certs.py b/novaclient/v1_1/certs.py
index 6e3a4c71..28ff34e3 100644
--- a/novaclient/v1_1/certs.py
+++ b/novaclient/v1_1/certs.py
@@ -1,6 +1,6 @@
# Copyright 2010 Jacob Kaplan-Moss
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/v1_1/client.py b/novaclient/v1_1/client.py
index 383ae19f..cae702d1 100644
--- a/novaclient/v1_1/client.py
+++ b/novaclient/v1_1/client.py
@@ -1,5 +1,5 @@
# vim: tabstop=4 shiftwidth=4 softtabstop=4
-# Copyright 2012 OpenStack LLC.
+# Copyright 2012 OpenStack Foundation
# Copyright 2013 IBM Corp.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/v1_1/cloudpipe.py b/novaclient/v1_1/cloudpipe.py
index 44baa216..de07bf68 100644
--- a/novaclient/v1_1/cloudpipe.py
+++ b/novaclient/v1_1/cloudpipe.py
@@ -1,4 +1,4 @@
-# Copyright 2012 OpenStack LLC.
+# Copyright 2012 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/v1_1/contrib/list_extensions.py b/novaclient/v1_1/contrib/list_extensions.py
index f184238d..7eb9f16c 100644
--- a/novaclient/v1_1/contrib/list_extensions.py
+++ b/novaclient/v1_1/contrib/list_extensions.py
@@ -1,4 +1,4 @@
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/v1_1/contrib/tenant_networks.py b/novaclient/v1_1/contrib/tenant_networks.py
index 9f70634d..9ac97f11 100644
--- a/novaclient/v1_1/contrib/tenant_networks.py
+++ b/novaclient/v1_1/contrib/tenant_networks.py
@@ -1,4 +1,4 @@
-# Copyright 2013 OpenStack, LLC
+# Copyright 2013 OpenStack Foundation
#
# 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/novaclient/v1_1/flavor_access.py b/novaclient/v1_1/flavor_access.py
index ef3992af..851a9db7 100644
--- a/novaclient/v1_1/flavor_access.py
+++ b/novaclient/v1_1/flavor_access.py
@@ -1,4 +1,4 @@
-# Copyright 2012 OpenStack LLC.
+# Copyright 2012 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/v1_1/floating_ips.py b/novaclient/v1_1/floating_ips.py
index c7646747..503e6269 100644
--- a/novaclient/v1_1/floating_ips.py
+++ b/novaclient/v1_1/floating_ips.py
@@ -1,5 +1,5 @@
# Copyright (c) 2011 X.commerce, a business unit of eBay Inc.
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/v1_1/fping.py b/novaclient/v1_1/fping.py
index 2f9eb89b..36ecac63 100644
--- a/novaclient/v1_1/fping.py
+++ b/novaclient/v1_1/fping.py
@@ -1,6 +1,6 @@
# vim: tabstop=4 shiftwidth=4 softtabstop=4
-# Copyright 2012 OpenStack LLC.
+# Copyright 2012 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/v1_1/hosts.py b/novaclient/v1_1/hosts.py
index 52a4dc0a..cc1a48af 100644
--- a/novaclient/v1_1/hosts.py
+++ b/novaclient/v1_1/hosts.py
@@ -1,4 +1,4 @@
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/v1_1/hypervisors.py b/novaclient/v1_1/hypervisors.py
index dfb5c885..4d02576d 100644
--- a/novaclient/v1_1/hypervisors.py
+++ b/novaclient/v1_1/hypervisors.py
@@ -1,4 +1,4 @@
-# Copyright 2012 OpenStack LLC.
+# Copyright 2012 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/v1_1/keypairs.py b/novaclient/v1_1/keypairs.py
index bb31e865..e3423258 100644
--- a/novaclient/v1_1/keypairs.py
+++ b/novaclient/v1_1/keypairs.py
@@ -1,4 +1,4 @@
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/v1_1/limits.py b/novaclient/v1_1/limits.py
index bcf8fa2d..97b786f8 100644
--- a/novaclient/v1_1/limits.py
+++ b/novaclient/v1_1/limits.py
@@ -1,4 +1,4 @@
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
from novaclient import base
diff --git a/novaclient/v1_1/networks.py b/novaclient/v1_1/networks.py
index b1fbb888..18c5bd53 100644
--- a/novaclient/v1_1/networks.py
+++ b/novaclient/v1_1/networks.py
@@ -1,4 +1,4 @@
-# Copyright 2012 OpenStack LLC.
+# Copyright 2012 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/v1_1/quota_classes.py b/novaclient/v1_1/quota_classes.py
index 06642846..874b5063 100644
--- a/novaclient/v1_1/quota_classes.py
+++ b/novaclient/v1_1/quota_classes.py
@@ -1,4 +1,4 @@
-# Copyright 2012 OpenStack LLC.
+# Copyright 2012 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/v1_1/quotas.py b/novaclient/v1_1/quotas.py
index c63cb469..d2128569 100644
--- a/novaclient/v1_1/quotas.py
+++ b/novaclient/v1_1/quotas.py
@@ -1,4 +1,4 @@
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/v1_1/security_group_rules.py b/novaclient/v1_1/security_group_rules.py
index 2e3ba566..3e23a287 100644
--- a/novaclient/v1_1/security_group_rules.py
+++ b/novaclient/v1_1/security_group_rules.py
@@ -1,4 +1,4 @@
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/v1_1/security_groups.py b/novaclient/v1_1/security_groups.py
index 0e2037ee..55181152 100644
--- a/novaclient/v1_1/security_groups.py
+++ b/novaclient/v1_1/security_groups.py
@@ -1,4 +1,4 @@
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/v1_1/servers.py b/novaclient/v1_1/servers.py
index 78bb4351..5d96b133 100644
--- a/novaclient/v1_1/servers.py
+++ b/novaclient/v1_1/servers.py
@@ -1,6 +1,6 @@
# Copyright 2010 Jacob Kaplan-Moss
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/novaclient/v1_1/shell.py b/novaclient/v1_1/shell.py
index 56bbc3cd..2b65b976 100644
--- a/novaclient/v1_1/shell.py
+++ b/novaclient/v1_1/shell.py
@@ -1,6 +1,6 @@
# Copyright 2010 Jacob Kaplan-Moss
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# Copyright 2013 IBM Corp.
# All Rights Reserved.
#
diff --git a/novaclient/v1_1/virtual_interfaces.py b/novaclient/v1_1/virtual_interfaces.py
index 64593e01..9c04e8d8 100644
--- a/novaclient/v1_1/virtual_interfaces.py
+++ b/novaclient/v1_1/virtual_interfaces.py
@@ -1,4 +1,4 @@
-# Copyright 2012 OpenStack LLC.
+# Copyright 2012 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/setup.py b/setup.py
index 062e49b7..f1e2b7b3 100644
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,4 @@
-# Copyright 2011 OpenStack, LLC
+# Copyright 2011 OpenStack Foundation
#
# 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/tests/test_auth_plugins.py b/tests/test_auth_plugins.py
index e73c3545..fca50695 100644
--- a/tests/test_auth_plugins.py
+++ b/tests/test_auth_plugins.py
@@ -1,4 +1,4 @@
-# Copyright 2012 OpenStack LLC.
+# Copyright 2012 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/tests/test_client.py b/tests/test_client.py
index ecc9606f..dde65486 100644
--- a/tests/test_client.py
+++ b/tests/test_client.py
@@ -1,4 +1,4 @@
-# Copyright 2012 OpenStack LLC.
+# Copyright 2012 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/tests/test_discover.py b/tests/test_discover.py
index dbbddc4e..3b78f0ca 100644
--- a/tests/test_discover.py
+++ b/tests/test_discover.py
@@ -1,4 +1,4 @@
-# Copyright 2012 OpenStack LLC.
+# Copyright 2012 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/tests/v1_1/contrib/fakes.py b/tests/v1_1/contrib/fakes.py
index b5c041d8..6983406e 100644
--- a/tests/v1_1/contrib/fakes.py
+++ b/tests/v1_1/contrib/fakes.py
@@ -1,4 +1,4 @@
-# Copyright 2012 OpenStack, LLC
+# Copyright 2012 OpenStack Foundation
#
# 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/tests/v1_1/contrib/test_tenant_networks.py b/tests/v1_1/contrib/test_tenant_networks.py
index 4be6deee..b66cc5b9 100644
--- a/tests/v1_1/contrib/test_tenant_networks.py
+++ b/tests/v1_1/contrib/test_tenant_networks.py
@@ -1,6 +1,6 @@
# vim: tabstop=4 shiftwidth=4 softtabstop=4
-# Copyright 2012 OpenStack LLC.
+# Copyright 2012 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/tests/v1_1/fakes.py b/tests/v1_1/fakes.py
index 62fc103d..5a936269 100644
--- a/tests/v1_1/fakes.py
+++ b/tests/v1_1/fakes.py
@@ -1,5 +1,5 @@
# Copyright (c) 2011 X.commerce, a business unit of eBay Inc.
-# Copyright 2011 OpenStack, LLC
+# Copyright 2011 OpenStack Foundation
# Copyright 2013 IBM Corp.
#
# Licensed under the Apache License, Version 2.0 (the "License");
diff --git a/tests/v1_1/test_aggregates.py b/tests/v1_1/test_aggregates.py
index ebab2cd9..0b84067c 100644
--- a/tests/v1_1/test_aggregates.py
+++ b/tests/v1_1/test_aggregates.py
@@ -1,4 +1,4 @@
-# Copyright 2012 OpenStack LLC.
+# Copyright 2012 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/tests/v1_1/test_availability_zone.py b/tests/v1_1/test_availability_zone.py
index f270bec2..56a1480f 100644
--- a/tests/v1_1/test_availability_zone.py
+++ b/tests/v1_1/test_availability_zone.py
@@ -1,4 +1,4 @@
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# Copyright 2013 IBM Corp.
# All Rights Reserved.
#
diff --git a/tests/v1_1/test_flavor_access.py b/tests/v1_1/test_flavor_access.py
index 2c137291..929b5151 100644
--- a/tests/v1_1/test_flavor_access.py
+++ b/tests/v1_1/test_flavor_access.py
@@ -1,4 +1,4 @@
-# Copyright 2012 OpenStack LLC.
+# Copyright 2012 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/tests/v1_1/test_fping.py b/tests/v1_1/test_fping.py
index d4581bd2..4f77f790 100644
--- a/tests/v1_1/test_fping.py
+++ b/tests/v1_1/test_fping.py
@@ -1,6 +1,6 @@
# vim: tabstop=4 shiftwidth=4 softtabstop=4
-# Copyright 2012 OpenStack LLC.
+# Copyright 2012 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/tests/v1_1/test_hypervisors.py b/tests/v1_1/test_hypervisors.py
index 73221094..12dd2de0 100644
--- a/tests/v1_1/test_hypervisors.py
+++ b/tests/v1_1/test_hypervisors.py
@@ -1,4 +1,4 @@
-# Copyright 2012 OpenStack LLC.
+# Copyright 2012 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/tests/v1_1/test_quota_classes.py b/tests/v1_1/test_quota_classes.py
index b917665d..a539ebee 100644
--- a/tests/v1_1/test_quota_classes.py
+++ b/tests/v1_1/test_quota_classes.py
@@ -1,4 +1,4 @@
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/tests/v1_1/test_quotas.py b/tests/v1_1/test_quotas.py
index 80877cc3..11198d6b 100644
--- a/tests/v1_1/test_quotas.py
+++ b/tests/v1_1/test_quotas.py
@@ -1,4 +1,4 @@
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/tests/v1_1/test_shell.py b/tests/v1_1/test_shell.py
index b7901c4c..611f5a3c 100644
--- a/tests/v1_1/test_shell.py
+++ b/tests/v1_1/test_shell.py
@@ -1,6 +1,6 @@
# Copyright 2010 Jacob Kaplan-Moss
-# Copyright 2011 OpenStack LLC.
+# Copyright 2011 OpenStack Foundation
# Copyright 2012 IBM Corp.
# All Rights Reserved.
#
diff --git a/tools/install_venv.py b/tools/install_venv.py
index 953e74bf..5742f7e1 100644
--- a/tools/install_venv.py
+++ b/tools/install_venv.py
@@ -4,7 +4,7 @@
# Administrator of the National Aeronautics and Space Administration.
# All Rights Reserved.
#
-# Copyright 2010 OpenStack, LLC
+# Copyright 2010 OpenStack Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain