sobjects/textparsers.py
changeset 4004 c52619c738a5
parent 3860 2e7d399ee075
child 4056 f4634710e20c
--- a/sobjects/textparsers.py	Mon Dec 07 05:09:09 2009 -0800
+++ b/sobjects/textparsers.py	Mon Dec 07 06:39:35 2009 -0800
@@ -21,7 +21,7 @@
     """analyze and extract information from plain text by calling registered
     text parsers
     """
-    id = 'textanalyzer'
+    __regid__ = 'textanalyzer'
 
     def parse(self, caller, text):
         for parsercls in self.req.vreg['components'].get('textparser', ()):
@@ -36,7 +36,7 @@
 
     method on the caller.
     """
-    id = 'textparser'
+    __regid__ = 'textparser'
     __abstract__ = True
 
     def parse(self, caller, text):