Skip to content

Commit

Permalink
Fix linting issue in dev.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmchilton committed Jun 13, 2024
1 parent 912c1cb commit aa74967
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/managers/users.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def purge(self, user, flush=True):
private_role = self.app.security_agent.get_private_user_role(user)
if private_role is None:
raise exceptions.InconsistentDatabase(
"User '%s' private role is missing while attempting to purge deleted user." % user.email
f"User '{user.email}' private role is missing while attempting to purge deleted user."
)
# Delete History
for active_history in user.active_histories:
Expand Down

0 comments on commit aa74967

Please sign in to comment.