summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-11-15 06:33:28 +0000
committerGerrit Code Review <review@openstack.org>2013-11-15 06:33:28 +0000
commit9a649d46ead921d6792e5c4e04bd3e53fb8b4746 (patch)
tree9fdcff9a5827f29156da0399938f7544ab020b0e
parent861bc832cb64fc50c759a8de107294daf9412e84 (diff)
parent25172039759ab1013ccf00a2c1bec93db76a23ff (diff)
downloadpython-glanceclient-9a649d46ead921d6792e5c4e04bd3e53fb8b4746.tar.gz
Merge "Replace OpenStack LLC with OpenStack Foundation"
-rw-r--r--glanceclient/__init__.py2
-rw-r--r--glanceclient/client.py2
-rw-r--r--glanceclient/common/base.py2
-rw-r--r--glanceclient/common/http.py2
-rw-r--r--glanceclient/common/progressbar.py2
-rw-r--r--glanceclient/common/utils.py2
-rw-r--r--glanceclient/exc.py2
-rw-r--r--glanceclient/shell.py2
-rw-r--r--glanceclient/v1/__init__.py2
-rw-r--r--glanceclient/v1/client.py2
-rw-r--r--glanceclient/v1/image_members.py2
-rw-r--r--glanceclient/v1/images.py2
-rw-r--r--glanceclient/v1/legacy_shell.py2
-rw-r--r--glanceclient/v1/shell.py2
-rw-r--r--glanceclient/v2/client.py2
-rw-r--r--glanceclient/v2/images.py2
-rw-r--r--glanceclient/v2/schemas.py2
-rw-r--r--glanceclient/v2/shell.py2
-rw-r--r--tests/test_exc.py2
-rw-r--r--tests/test_http.py2
-rw-r--r--tests/test_progressbar.py2
-rw-r--r--tests/test_shell.py2
-rw-r--r--tests/test_ssl.py2
-rw-r--r--tests/test_utils.py2
-rw-r--r--tests/utils.py2
-rw-r--r--tests/v1/test_image_members.py2
-rw-r--r--tests/v1/test_images.py2
-rw-r--r--tests/v1/test_legacy_shell.py2
-rw-r--r--tests/v1/test_shell.py2
-rw-r--r--tests/v2/test_schemas.py2
-rw-r--r--tests/v2/test_shell_v2.py2
31 files changed, 31 insertions, 31 deletions
diff --git a/glanceclient/__init__.py b/glanceclient/__init__.py
index 94dd4c9..f59bd0b 100644
--- a/glanceclient/__init__.py
+++ b/glanceclient/__init__.py
@@ -1,6 +1,6 @@
# vim: tabstop=4 shiftwidth=4 softtabstop=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/glanceclient/client.py b/glanceclient/client.py
index 22cd4a2..dfebf2f 100644
--- a/glanceclient/client.py
+++ b/glanceclient/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/glanceclient/common/base.py b/glanceclient/common/base.py
index 357b40b..e24b3c7 100644
--- a/glanceclient/common/base.py
+++ b/glanceclient/common/base.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/glanceclient/common/http.py b/glanceclient/common/http.py
index d08d5da..882fd1b 100644
--- a/glanceclient/common/http.py
+++ b/glanceclient/common/http.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/glanceclient/common/progressbar.py b/glanceclient/common/progressbar.py
index 63d4d8d..8b8fd44 100644
--- a/glanceclient/common/progressbar.py
+++ b/glanceclient/common/progressbar.py
@@ -1,4 +1,4 @@
-# Copyright 2013 OpenStack LLC.
+# Copyright 2013 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/glanceclient/common/utils.py b/glanceclient/common/utils.py
index 98c1f02..3e32763 100644
--- a/glanceclient/common/utils.py
+++ b/glanceclient/common/utils.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/glanceclient/exc.py b/glanceclient/exc.py
index a8e2fef..9caa24d 100644
--- a/glanceclient/exc.py
+++ b/glanceclient/exc.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/glanceclient/shell.py b/glanceclient/shell.py
index b01f114..f0b7abf 100644
--- a/glanceclient/shell.py
+++ b/glanceclient/shell.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/glanceclient/v1/__init__.py b/glanceclient/v1/__init__.py
index 8982002..39e1d5a 100644
--- a/glanceclient/v1/__init__.py
+++ b/glanceclient/v1/__init__.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/glanceclient/v1/client.py b/glanceclient/v1/client.py
index 4d0fd27..d28b663 100644
--- a/glanceclient/v1/client.py
+++ b/glanceclient/v1/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/glanceclient/v1/image_members.py b/glanceclient/v1/image_members.py
index 1cb0f81..77c7f65 100644
--- a/glanceclient/v1/image_members.py
+++ b/glanceclient/v1/image_members.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/glanceclient/v1/images.py b/glanceclient/v1/images.py
index 46bd595..c64ad6e 100644
--- a/glanceclient/v1/images.py
+++ b/glanceclient/v1/images.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/glanceclient/v1/legacy_shell.py b/glanceclient/v1/legacy_shell.py
index 5800785..605ce8f 100644
--- a/glanceclient/v1/legacy_shell.py
+++ b/glanceclient/v1/legacy_shell.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/glanceclient/v1/shell.py b/glanceclient/v1/shell.py
index 1bd239e..cf36add 100644
--- a/glanceclient/v1/shell.py
+++ b/glanceclient/v1/shell.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/glanceclient/v2/client.py b/glanceclient/v2/client.py
index 77d844d..50be984 100644
--- a/glanceclient/v2/client.py
+++ b/glanceclient/v2/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/glanceclient/v2/images.py b/glanceclient/v2/images.py
index eadb27e..49a3bb4 100644
--- a/glanceclient/v2/images.py
+++ b/glanceclient/v2/images.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/glanceclient/v2/schemas.py b/glanceclient/v2/schemas.py
index f3de40c..57f6cc7 100644
--- a/glanceclient/v2/schemas.py
+++ b/glanceclient/v2/schemas.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/glanceclient/v2/shell.py b/glanceclient/v2/shell.py
index a62d4fd..5851acd 100644
--- a/glanceclient/v2/shell.py
+++ b/glanceclient/v2/shell.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_exc.py b/tests/test_exc.py
index b857aee..77457ce 100644
--- a/tests/test_exc.py
+++ b/tests/test_exc.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_http.py b/tests/test_http.py
index afeb252..a54efaf 100644
--- a/tests/test_http.py
+++ b/tests/test_http.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_progressbar.py b/tests/test_progressbar.py
index 891f15e..7f4ae84 100644
--- a/tests/test_progressbar.py
+++ b/tests/test_progressbar.py
@@ -1,4 +1,4 @@
-# Copyright 2013 OpenStack LLC.
+# Copyright 2013 OpenStack Foundation
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
diff --git a/tests/test_shell.py b/tests/test_shell.py
index cdbd632..d7999e4 100644
--- a/tests/test_shell.py
+++ b/tests/test_shell.py
@@ -1,4 +1,4 @@
-# Copyright 2013 OpenStack LLC.
+# Copyright 2013 OpenStack Foundation
# Copyright (C) 2013 Yahoo! Inc.
# All Rights Reserved.
#
diff --git a/tests/test_ssl.py b/tests/test_ssl.py
index 8792a9c..aaba67e 100644
--- a/tests/test_ssl.py
+++ b/tests/test_ssl.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_utils.py b/tests/test_utils.py
index fbcf8fb..ae72bde 100644
--- a/tests/test_utils.py
+++ b/tests/test_utils.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/utils.py b/tests/utils.py
index 3d85951..8e1689c 100644
--- a/tests/utils.py
+++ b/tests/utils.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/test_image_members.py b/tests/v1/test_image_members.py
index 6a890a4..a0705ad 100644
--- a/tests/v1/test_image_members.py
+++ b/tests/v1/test_image_members.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/test_images.py b/tests/v1/test_images.py
index 3d09fd8..5963198 100644
--- a/tests/v1/test_images.py
+++ b/tests/v1/test_images.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/test_legacy_shell.py b/tests/v1/test_legacy_shell.py
index 8d72046..c939e5d 100644
--- a/tests/v1/test_legacy_shell.py
+++ b/tests/v1/test_legacy_shell.py
@@ -1,4 +1,4 @@
-# Copyright 2013 OpenStack LLC.
+# Copyright 2013 OpenStack Foundation
# Copyright (C) 2013 Yahoo! Inc.
# All Rights Reserved.
#
diff --git a/tests/v1/test_shell.py b/tests/v1/test_shell.py
index 9de0d62..4cc01dc 100644
--- a/tests/v1/test_shell.py
+++ b/tests/v1/test_shell.py
@@ -1,4 +1,4 @@
-# Copyright 2013 OpenStack LLC.
+# Copyright 2013 OpenStack Foundation
# Copyright (C) 2013 Yahoo! Inc.
# All Rights Reserved.
#
diff --git a/tests/v2/test_schemas.py b/tests/v2/test_schemas.py
index 23b881a..7622d49 100644
--- a/tests/v2/test_schemas.py
+++ b/tests/v2/test_schemas.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/v2/test_shell_v2.py b/tests/v2/test_shell_v2.py
index 17ad95d..4a13e0b 100644
--- a/tests/v2/test_shell_v2.py
+++ b/tests/v2/test_shell_v2.py
@@ -1,4 +1,4 @@
-# Copyright 2013 OpenStack LLC.
+# Copyright 2013 OpenStack Foundation
# Copyright (C) 2013 Yahoo! Inc.
# All Rights Reserved.
#