Remove a couple print()s

This commit is contained in:
richard-dds 2018-06-14 13:16:13 -04:00 committed by Jason Garber
parent 3032d42b5d
commit ccbe89545f

View File

@ -47,8 +47,6 @@ class RequestNew(BaseHandler):
self.check_xsrf_cookie()
screen = int(screen)
form = self.screens[ screen - 1 ]['form'](self.request.arguments)
print( 'data---------' )
print( form.data )
if form.validate():
where = self.application.default_router.reverse_url('request_form', str(screen + 1))
self.redirect(where)