diff options
Diffstat (limited to 'sandbox/pbool.py')
-rw-r--r-- | sandbox/pbool.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sandbox/pbool.py b/sandbox/pbool.py index d26f8b4..b1b9d5c 100644 --- a/sandbox/pbool.py +++ b/sandbox/pbool.py @@ -3,7 +3,7 @@ class B(object): if x: self._o = True else: self._o = False def __getattribute__(self, attr): - print "ga called", attr + print("ga called", attr) return object.__getattribute__(self, attr) def _sqlquote(self): if self._o: |