Fix broken indents

feature/embed-uploads
Tristan Gosselin-Hane 7 years ago
parent 8fc8113200
commit d7ba5bc0dc
  1. 8
      webhook-bridge.py

@ -115,8 +115,8 @@ def main():
# Shouldn't happen anymore since the tab list packet sends us uuids # Shouldn't happen anymore since the tab list packet sends us uuids
logging.debug("Got chat message from player {}, their UUID was not cached so it is being looked up via the Mojang API.".format(username)) logging.debug("Got chat message from player {}, their UUID was not cached so it is being looked up via the Mojang API.".format(username))
try: try:
player_uuid = requests.get("https://api.mojang.com/users/profiles/minecraft/{}".format(username)).json()["id"] player_uuid = requests.get("https://api.mojang.com/users/profiles/minecraft/{}".format(username)).json()["id"]
UUID_CACHE[username] = player_uuid UUID_CACHE[username] = player_uuid
except: except:
logging.error("Failed to lookup {}'s UUID using the Mojang API.") logging.error("Failed to lookup {}'s UUID using the Mojang API.")
return return
@ -143,8 +143,8 @@ def main():
# Shouldn't happen anymore since the tab list packet sends us uuids # Shouldn't happen anymore since the tab list packet sends us uuids
logging.debug("Got chat message from player {}, their UUID was not cached so it is being looked up via the Mojang API.".format(username)) logging.debug("Got chat message from player {}, their UUID was not cached so it is being looked up via the Mojang API.".format(username))
try: try:
player_uuid = requests.get("https://api.mojang.com/users/profiles/minecraft/{}".format(username)).json()["id"] player_uuid = requests.get("https://api.mojang.com/users/profiles/minecraft/{}".format(username)).json()["id"]
UUID_CACHE[username] = player_uuid UUID_CACHE[username] = player_uuid
except: except:
logging.error("Failed to lookup {}'s UUID using the Mojang API.") logging.error("Failed to lookup {}'s UUID using the Mojang API.")
return return

Loading…
Cancel
Save