Appease the linter

This commit is contained in:
amcmanu3 2022-05-17 16:01:37 -04:00
parent a2b711b5ac
commit e12814d0b0

View File

@ -57,7 +57,7 @@ class MainPrompt(cmd.Cmd):
try:
username = str(line).lower()
user_id = self.controller.users.get_id_by_name(username)
except Exception as e:
except:
Console.error(f"User: {line} Not Found")
return False
new_pass = getpass.getpass(prompt=f"NEW password for: {username} > ")