components/python/oslo.utils/patches/disable-oslo-deprecation.patch
changeset 3998 5bd484384122
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/python/oslo.utils/patches/disable-oslo-deprecation.patch	Thu Mar 19 14:41:20 2015 -0700
@@ -0,0 +1,15 @@
+This patch removes the legacy oslo namespace deprecation check from the
+oslo.utils library. The deprecated() function is left to satisfy the
+unit tests. It is not suitable for the upstream and should be removed
+once all of the relevant consumers have switched over to the new
+namespace.
+
+--- oslo.utils-1.2.1/oslo/utils/__init__.py.~1~	2015-01-08 13:42:18.000000000 -0800
++++ oslo.utils-1.2.1/oslo/utils/__init__.py	2015-03-02 23:10:23.349348280 -0800
+@@ -21,6 +21,3 @@ def deprecated():
+         DeprecationWarning,
+         stacklevel=3,
+     )
+-
+-
+-deprecated()