From 8098843e1ee8ff724980fc50637f11de755e2607 Mon Sep 17 00:00:00 2001 From: Joe R Date: Thu, 29 Jun 2023 22:57:22 -0400 Subject: [PATCH] Fixed spacing issue. --- pysollib/tile/selectgame.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pysollib/tile/selectgame.py b/pysollib/tile/selectgame.py index 2ccd7e3c8..7534f351c 100644 --- a/pysollib/tile/selectgame.py +++ b/pysollib/tile/selectgame.py @@ -603,8 +603,8 @@ def performSearch(self): continue if self.criteria.statistics != '': - won, lost = self.app.stats.getStats \ - (self.app.opt.player, game.id) + won, lost = (self.app.stats.getStats + (self.app.opt.player, game.id)) statoption = \ self.criteria.statisticsOptions[self.criteria.statistics] if statoption == 'played' and won + lost == 0: