Skip to content

Commit cd29360

Browse files
author
Richard Jones
committed
typo
1 parent e57554f commit cd29360

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

roundup/cgi_client.py

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
# $Id: cgi_client.py,v 1.63 2001-11-26 22:55:56 richard Exp $
18+
# $Id: cgi_client.py,v 1.64 2001-11-26 22:56:35 richard Exp $
1919

2020
__doc__ = """
2121
WWW request handler (also used in the stand-alone server).
@@ -308,7 +308,7 @@ def shownode(self, message=None):
308308
keys = self.form.keys()
309309
num_re = re.compile('^\d+$')
310310
# don't try to set properties if the user has just logged in
311-
if keys and not self.form.has_key('__login_name')::
311+
if keys and not self.form.has_key('__login_name'):
312312
try:
313313
props, changed = parsePropsFromForm(self.db, cl, self.form,
314314
self.nodeid)
@@ -1038,6 +1038,18 @@ def parsePropsFromForm(db, cl, form, nodeid=0):
10381038

10391039
#
10401040
# $Log: not supported by cvs2svn $
1041+
# Revision 1.63 2001/11/26 22:55:56 richard
1042+
# Feature:
1043+
# . Added INSTANCE_NAME to configuration - used in web and email to identify
1044+
# the instance.
1045+
# . Added EMAIL_SIGNATURE_POSITION to indicate where to place the roundup
1046+
# signature info in e-mails.
1047+
# . Some more flexibility in the mail gateway and more error handling.
1048+
# . Login now takes you to the page you back to the were denied access to.
1049+
#
1050+
# Fixed:
1051+
# . Lots of bugs, thanks Roché and others on the devel mailing list!
1052+
#
10411053
# Revision 1.62 2001/11/24 00:45:42 jhermann
10421054
# typeof() instead of type(): avoid clash with database field(?) "type"
10431055
#

0 commit comments

Comments
 (0)