fixed a typo in error message

This commit is contained in:
Tim Richardson
2013-06-21 03:34:51 +10:00
parent 5dd452554e
commit 4c2fba134d
+1 -1
View File
@@ -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):