[Checkins] SVN: z3c.autoinclude/branches/adding-salt/src/z3c/autoinclude/zcml.py actually, wait, ignoring the directive in 0.3 will be a terrible idea. better get rid of it at that point altogether so errors are caught early.

Ethan Jucovy ejucovy at openplans.org
Tue Mar 25 13:01:08 EDT 2008


Log message for revision 84939:
  actually, wait, ignoring the directive in 0.3 will be a terrible idea. better get rid of it at that point altogether so errors are caught early.

Changed:
  U   z3c.autoinclude/branches/adding-salt/src/z3c/autoinclude/zcml.py

-=-
Modified: z3c.autoinclude/branches/adding-salt/src/z3c/autoinclude/zcml.py
===================================================================
--- z3c.autoinclude/branches/adding-salt/src/z3c/autoinclude/zcml.py	2008-03-25 16:57:57 UTC (rev 84938)
+++ z3c.autoinclude/branches/adding-salt/src/z3c/autoinclude/zcml.py	2008-03-25 17:01:07 UTC (rev 84939)
@@ -65,10 +65,10 @@
 
 import warnings
 def deprecatedAutoIncludeDirective(_context, package):
-    warnings.warn("The <autoinclude> directive is deprecated and will be ignored in z3c.autoinclude 0.3. Please use <includeDependencies> instead.", DeprecationWarning, stacklevel=2)
+    warnings.warn("The <autoinclude> directive is deprecated and will be removed in z3c.autoinclude 0.3. Please use <includeDependencies> instead.", DeprecationWarning, stacklevel=2)
     autoIncludeDirective(_context, package)
 
 def deprecatedAutoIncludeOverridesDirective(_context, package):
-    warnings.warn("The <autoincludeOverrides> directive is deprecated and will be ignored in z3c.autoinclude 0.3. Please use <includeDependenciesOverrides> instead.", DeprecationWarning, stacklevel=2)
+    warnings.warn("The <autoincludeOverrides> directive is deprecated and will be removed in z3c.autoinclude 0.3. Please use <includeDependenciesOverrides> instead.", DeprecationWarning, stacklevel=2)
     autoIncludeOverridesDirective(_context, package)
 



More information about the Checkins mailing list