1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Fix Right Triangle in Python 3

Wrong methods were called (from TalonStack instead of Stack) because of
new-style class' MRO in Python 3
This commit is contained in:
Roderik Ploszek 2018-04-15 23:20:25 +02:00
parent 661c23e1b0
commit 15befcf6cf

View file

@ -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)