aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar RohanRadia <[email protected]>2019-04-02 22:19:51 +0100
committerGravatar RohanRadia <[email protected]>2019-04-02 22:19:51 +0100
commit5d86c2a3c937f1d3c503a5a95d50b1ca14dd0fbe (patch)
tree77c8aabb5b57cfe55e74b9f85f8571f2dcda57b8
parentFixed importing of JSON file in traditions.py (diff)
Identified syntax error and fixed.
-rw-r--r--bot/seasons/easter/traditions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/easter/traditions.py b/bot/seasons/easter/traditions.py
index e5656be3..163a1714 100644
--- a/bot/seasons/easter/traditions.py
+++ b/bot/seasons/easter/traditions.py
@@ -7,7 +7,7 @@ from discord.ext import commands
log = logging.getLogger(__name__)
-with open(Path('bot', 'resources', , 'easter', 'traditions.json', 'r', encoding="utf8") as f:
+with open(Path('bot', 'resources', 'easter', 'traditions.json', 'r', encoding="utf8") as f:
traditions = json.load(f)