aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2018-02-15 18:21:27 +0000
committerGravatar Gareth Coles <[email protected]>2018-02-15 18:21:27 +0000
commit68587879398915c3650353f3c84117f0b3ba5851 (patch)
tree0ab36a2b3a0cdf6193ec7fcaabded5394d380e88
parentFix silly equality check (diff)
Fix object iteration
-rw-r--r--bot/cogs/deployment.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/deployment.py b/bot/cogs/deployment.py
index 045f0c4af..c2f32eae3 100644
--- a/bot/cogs/deployment.py
+++ b/bot/cogs/deployment.py
@@ -65,7 +65,7 @@ class Deployment:
)
for obj in data:
- key, value = obj.items()[0]
+ key, value = list(obj.items())[0]
embed.add_field(
name=key, value=value, inline=True