From 259f4eadda87d2a234e2c3ef72e23c38e6dcbd72 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Mon, 1 Nov 2021 22:56:09 +0000 Subject: [PATCH] Joining dictionaries --- content.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content.py b/content.py index ac281212f..57725ecde 100644 --- a/content.py +++ b/content.py @@ -906,7 +906,7 @@ def addHtmlTags(baseDir: str, httpPrefix: str, loadJson(baseDir + '/emojicustom/emoji.json') if customEmojiDict: emojiDict = \ - dict(emojiDict.items() + customEmojiDict.items()) + dict(emojiDict, **customEmojiDict) # print('TAG: looking up emoji for :' + wordStr2 + ':') _addEmoji(baseDir, ':' + wordStr2 + ':', httpPrefix,