Skip to content

Commit f016af5

Browse files
committed
Fix missing return value.
1 parent 445cef6 commit f016af5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roundup/cgi/actions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#$Id: actions.py,v 1.64 2007-01-11 07:34:02 schlatterbeck Exp $
1+
#$Id: actions.py,v 1.65 2007-04-19 12:18:50 stefan Exp $
22

33
import re, cgi, StringIO, urllib, Cookie, time, random, csv, codecs
44

@@ -772,7 +772,7 @@ def handle(self):
772772
except (ValueError, KeyError), message:
773773
self.client.error_message.append(str(message))
774774
return
775-
self.finishRego()
775+
return self.finishRego()
776776

777777
class RegisterAction(RegoCommon, EditCommon):
778778
name = 'register'

0 commit comments

Comments
 (0)