From 4c2fba134d6cbd75be6063ee69dad714055722ae Mon Sep 17 00:00:00 2001 From: Tim Richardson Date: Fri, 21 Jun 2013 03:34:51 +1000 Subject: [PATCH] fixed a typo in error message --- gluon/dal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gluon/dal.py b/gluon/dal.py index 194413a4..3312c724 100644 --- a/gluon/dal.py +++ b/gluon/dal.py @@ -8547,7 +8547,7 @@ class Table(object): except (KeyError, AttributeError): # error sinlently unless field is required! if ofield.required: - raise SyntaxError('unable to comput field: %s' % name) + raise SyntaxError('unable to compute field: %s' % name) return new_fields.values() def _attempt_upload(self, fields):