Merge pull request #5 from pixel-stuck/master

Switch errors: Set 'err_description' var unconditionally before searching
This commit is contained in:
pixel-stuck 2018-12-27 21:25:47 -05:00 committed by GitHub
commit de7591e73f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -102,6 +102,9 @@ class Err:
else:
err_module = "Unknown"
# Set initial value unconditionally
err_description = self.no_err_desc
# Searching for error codes related to the Switch
# (doesn't include special cases)
if errcode in switch_known_errcodes:
@ -112,8 +115,6 @@ class Err:
for errcode_range in switch_known_errcode_ranges[module]:
if desc >= errcode_range[0] and desc <= errcode_range[1]:
err_description = errcode_range[2]
else:
err_description = self.no_err_desc
# Make a nice Embed out of it
embed = discord.Embed(title=f"{str_errcode} / {hex(errcode)}",