Remove redundant load() call.

This commit is contained in:
Guido van Rossum 2002-10-17 19:30:39 +00:00
parent 5f2c1d27b9
commit 3296dcc65d
1 changed files with 0 additions and 1 deletions

View File

@ -10,7 +10,6 @@ def main():
cmd = form.getvalue("cmd", "view")
page = form.getvalue("page", "FrontPage")
wiki = WikiPage(page)
wiki.load()
method = getattr(wiki, 'cmd_' + cmd, None) or wiki.cmd_view
method(form)