Mercurial > hg > ZopePubmanConnector
annotate __init__.py @ 23:d24a8673d68e
trying to fix bug in error message.
author | casties |
---|---|
date | Thu, 24 Oct 2013 18:22:54 +0200 |
parents | 373e6610e290 |
children |
rev | line source |
---|---|
0 | 1 import zopePubmanConnector |
2 | |
3 def initialize(context): | |
4 """initialize OSAS""" | |
5 | |
6 | |
7 context.registerClass( | |
8 zopePubmanConnector.ZopePubmanConnector, | |
9 constructors = ( | |
10 zopePubmanConnector.manage_addZopePubmanConnectorForm, | |
11 zopePubmanConnector.manage_addZopePubmanConnector | |
12 ) | |
13 ) | |
14 | |
15 |