Skip to content

Commit 6ecdacb

Browse files
author
Richard Jones
committed
updated ZRoundup for Zope 2.9 (patch [SF#1511734])
1 parent ee43f34 commit 6ecdacb

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Fixed:
1818
- '?' in rfc2822-encoded header isn't quoted (sf bug 1505663)
1919
- fix error message in form parser
2020
- update for latest version of pysqlite (sf bug 1487098; patch 1534227)
21+
- updated ZRoundup for Zope 2.9 (sf patch 1511734)
2122

2223

2324
2006-04-27 1.1.2

frontends/ZRoundup/__init__.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1515
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1616
#
17-
# $Id: __init__.py,v 1.4 2002-10-10 03:47:27 richard Exp $
17+
# $Id: __init__.py,v 1.5 2006-08-11 00:04:29 richard Exp $
1818
#
19-
__version__='1.0'
19+
__version__='1.1'
2020

2121
import os
2222
# figure where ZRoundup is installed
@@ -37,12 +37,13 @@
3737
raise ValueError, "Can't determine where ZRoundup is installed"
3838

3939
# product initialisation
40-
import ZRoundup
40+
from ZRoundup import ZRoundup, manage_addZRoundupForm, manage_addZRoundup
4141
def initialize(context):
4242
context.registerClass(
43-
ZRoundup, meta_type = 'Z Roundup',
43+
ZRoundup,
44+
meta_type = 'Z Roundup',
4445
constructors = (
45-
ZRoundup.manage_addZRoundupForm, ZRoundup.manage_addZRoundup
46+
manage_addZRoundupForm, manage_addZRoundup
4647
)
4748
)
4849

0 commit comments

Comments
 (0)