diff --git a/sandbox/pbool.py b/sandbox/pbool.py index 35ca760c..817e3ea0 100644 --- a/sandbox/pbool.py +++ b/sandbox/pbool.py @@ -6,7 +6,7 @@ class B(object): print "ga called", attr return object.__getattribute__(self, attr) def _sqlquote(self): - if self._o == True: + if self._o: return 'It is True' else: return 'It is False'