From ae44a9e0ac4c0443c9888c60e85c0c220735b673 Mon Sep 17 00:00:00 2001 From: Ricardo Pedroso Date: Mon, 13 May 2013 20:55:55 +0100 Subject: [PATCH] dal typo --- gluon/dal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gluon/dal.py b/gluon/dal.py index 6354769b..6653acc2 100644 --- a/gluon/dal.py +++ b/gluon/dal.py @@ -1856,7 +1856,7 @@ class BaseAdapter(ConnectionPool): if have_serializers: obj = serializers.json(obj) elif simplejson: - obj = simplejson.dumps(items) + obj = simplejson.dumps(obj) else: raise RuntimeError("missing simplejson") if not isinstance(obj,bytes):