vregistry.py
changeset 3405 9d31c9cb8103
parent 3383 c6aff16e5aed
child 3589 a5432f99f2d9
--- a/vregistry.py	Wed Sep 23 11:03:57 2009 +0200
+++ b/vregistry.py	Wed Sep 23 11:04:59 2009 +0200
@@ -61,7 +61,7 @@
 def class_regid(cls):
     """returns a unique identifier for an appobject class"""
     if 'id' in cls.__dict__:
-        warn('%s.%s: id is deprecated, use __regid__'
+        warn('[3.6] %s.%s: id is deprecated, use __regid__'
              % (cls.__module__, cls.__name__), DeprecationWarning)
         cls.__regid__ = cls.id
     if hasattr(cls, 'id'):