1
0
Fork 0
mirror of synced 2024-05-27 07:49:42 +12:00

Corrected syntax error

This commit is contained in:
Phxntxm 2016-07-14 07:32:16 -05:00
parent 3175f66bc5
commit 3e4259307a

View file

@ -52,7 +52,7 @@ class Overwatch:
g_stats = data['general_stats']
fmt = "\n".join("{}: {}".format(i, r) for i, r in g_stats if i in check_g_stats)
if hero not == "":
if not hero == "":
fmt += "\n".join("{}: {}".format(i, r) for i, r in data['hero_stats'].items())
fmt += "\n".join("{}: {}".format(i, r) for i, r in o_stats if i in check_o_stats)