[Zope-Checkins] CVS: Zope/lib/python/Products/ZReST - __init__.py:1.2.12.1

Chris McDonough chrism at zope.com
Fri Aug 15 21:55:27 EDT 2003


Update of /cvs-repository/Zope/lib/python/Products/ZReST
In directory cvs.zope.org:/tmp/cvs-serv22849

Modified Files:
      Tag: Zope-2_7-branch
	__init__.py 
Log Message:
Initialize the class, not the module.


=== Zope/lib/python/Products/ZReST/__init__.py 1.2 => 1.2.12.1 ===
--- Zope/lib/python/Products/ZReST/__init__.py:1.2	Sat Feb  1 04:28:30 2003
+++ Zope/lib/python/Products/ZReST/__init__.py	Fri Aug 15 20:55:22 2003
@@ -7,7 +7,8 @@
 import ZReST
 def initialize(context):
     context.registerClass(
-        ZReST, meta_type = 'ReStructuredText Document',
+        ZReST.ZReST,
+        meta_type = 'ReStructuredText Document',
         constructors = (
             ZReST.manage_addZReSTForm, ZReST.manage_addZReST
         )
@@ -16,6 +17,12 @@
 
 #
 # $Log$
+# Revision 1.2.12.1  2003/08/16 00:55:22  chrism
+# Initialize the class, not the module.
+#
+# Revision 1.3  2003/08/16 00:54:35  chrism
+# Initialize the class, not the module.
+#
 # Revision 1.2  2003/02/01 09:28:30  andreasjung
 # merge from ajung-restructuredtext-integration-branch
 #




More information about the Zope-Checkins mailing list