diff options
author | emkael <emkael@tlen.pl> | 2019-07-26 12:50:54 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2019-07-26 12:50:54 +0200 |
commit | f29b06c83f952d81811d0341ebadf8673473b0e7 (patch) | |
tree | 7ade5ae0ea5cf0461a214ae7e3281f08bbc5a2e9 | |
parent | a521fe64b13d9962051f7361e8cc13f042519138 (diff) |
Bugfix for config collection
-rw-r--r-- | jfr_playoff/gui/frames/match.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jfr_playoff/gui/frames/match.py b/jfr_playoff/gui/frames/match.py index caf14ea..12d02a5 100644 --- a/jfr_playoff/gui/frames/match.py +++ b/jfr_playoff/gui/frames/match.py @@ -807,7 +807,7 @@ class MatchPhaseFrame(ScrollableFrame): '<<MatchListChanged>>', when='tail') def getConfig(self): - config = OrderedDict + config = OrderedDict() if self.name.get(): config['title'] = self.name.get() if self.link.get(): |