From b3139dbc499188fa68f7752ef2849a03e9ab79b1 Mon Sep 17 00:00:00 2001 From: mdipierro Date: Thu, 5 Jul 2012 10:51:03 -0500 Subject: [PATCH] fixed typo in recent commit, thanks szimson --- VERSION | 2 +- gluon/dal.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 4f198cdc..760f214a 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.00.0 (2012-07-05 10:47:05) dev +Version 2.00.0 (2012-07-05 10:51:00) dev diff --git a/gluon/dal.py b/gluon/dal.py index 37536003..a73ba34c 100644 --- a/gluon/dal.py +++ b/gluon/dal.py @@ -2045,7 +2045,7 @@ class MySQLAdapter(BaseAdapter): } def varquote(self,name): - return '`%`' % name + return '`%s`' % name def RANDOM(self): return 'RAND()'