We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6321893 commit f0c5bf8Copy full SHA for f0c5bf8
compiler_admin/commands/user/offboard.py
@@ -40,7 +40,7 @@ def offboard(args: Namespace) -> int:
40
return RESULT_FAILURE
41
42
if getattr(args, "force", False) is False:
43
- cont = input(f"Offboard account {account} {' (assigning alias to '+ alias_account +')' if alias else ''}? (Y/n)")
+ cont = input(f"Offboard account {account} {' (assigning alias to ' + alias_account + ')' if alias else ''}? (Y/n)")
44
if not cont.lower().startswith("y"):
45
print("Aborting offboard.")
46
return RESULT_SUCCESS
0 commit comments