This commit is contained in:
Matt Tuchfarber
2019-03-11 14:56:39 -04:00
parent 906faba8fb
commit cbe466fe61

View File

@@ -1144,9 +1144,9 @@ class UsernameReplacementView(APIView):
).update(
**{column: new_username}
)
except Exception as exc: # pylint: disable-broad-except
except Exception as exc: # pylint: disable=broad-except
log.exception(
"Unable to change username from %s to %s. Reason: %s",
u"Unable to change username from %s to %s. Reason: %s",
current_username,
new_username,
exc
@@ -1154,7 +1154,7 @@ class UsernameReplacementView(APIView):
return False
if num_rows_changed == 0:
log.warning(
"Unable to change username from %s to %s because %s doesn't exist.",
u"Unable to change username from %s to %s because %s doesn't exist.",
current_username,
new_username,
current_username,
@@ -1162,7 +1162,7 @@ class UsernameReplacementView(APIView):
return False
log.info(
"Successfully changed username from %s to %s.",
u"Successfully changed username from %s to %s.",
current_username,
new_username,
)