Skip to content

Commit 258774f

Browse files
author
Richard Jones
committed
fixed upgrading doc to have CGI changes in the correct order
1 parent 77480dd commit 258774f

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ are given with the most recent entry first.
44
2002-11-?? 0.5.3
55
- added mention of how to give users multiple Roles
66
- mention needed trailing "/" in TRACKER_WEB
7+
- fixed upgrading doc to have CGI changes in the correct order
78

89

910
2002-11-07 0.5.2

doc/upgrading.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -360,21 +360,21 @@ The CGI interface code was completely reorganised and largely rewritten. The
360360
end result is that this section of your tracker interfaces module will need
361361
changing from::
362362

363-
from roundup import mailgw
364-
from roundup.cgi import client
363+
from roundup import cgi_client, mailgw
364+
from roundup.i18n import _
365365

366-
class Client(client.Client):
366+
class Client(cgi_client.Client):
367367
''' derives basic CGI implementation from the standard module,
368368
with any specific extensions
369369
'''
370370
pass
371371

372372
to::
373373

374-
from roundup import cgi_client, mailgw
375-
from roundup.i18n import _
374+
from roundup import mailgw
375+
from roundup.cgi import client
376376

377-
class Client(cgi_client.Client):
377+
class Client(client.Client):
378378
''' derives basic CGI implementation from the standard module,
379379
with any specific extensions
380380
'''

0 commit comments

Comments
 (0)