diff options
Diffstat (limited to 'jfr_playoff/gui/frames')
-rw-r--r-- | jfr_playoff/gui/frames/match.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/jfr_playoff/gui/frames/match.py b/jfr_playoff/gui/frames/match.py index 2cf88bf..0dfd2aa 100644 --- a/jfr_playoff/gui/frames/match.py +++ b/jfr_playoff/gui/frames/match.py @@ -835,8 +835,7 @@ class MatchPhaseFrame(ScrollableFrame): def getConfig(self): config = OrderedDict() - if self.name.get(): - config['title'] = self.name.get() + config['title'] = self.name.get() or '' if self.link.get(): config['link'] = self.link.get() values = self.matches.getValue() |