From 15befcf6cf4d5418822068d3f175acae172ca6d7 Mon Sep 17 00:00:00 2001 From: Roderik Ploszek Date: Sun, 15 Apr 2018 23:20:25 +0200 Subject: [PATCH] Fix Right Triangle in Python 3 Wrong methods were called (from TalonStack instead of Stack) because of new-style class' MRO in Python 3 --- pysollib/games/gypsy.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pysollib/games/gypsy.py b/pysollib/games/gypsy.py index eeebda75..38e53603 100644 --- a/pysollib/games/gypsy.py +++ b/pysollib/games/gypsy.py @@ -589,6 +589,10 @@ class RightTriangle_Talon(OpenStack, DealRowTalonStack): getBottomImage = Stack._getReserveBottomImage + prepareView = Stack.prepareView + + resize = Stack.resize + def getHelp(self): return DealRowTalonStack.getHelp(self)