taskserver/helpertool: Fix error message on export
The error message displays that a specific user doesn't exist in an organisation, but uses the User object's name attribute to show which user it was. This is basically a very stupid chicken and egg problem and easily fixed by using the user name provided on the command line. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
a5e9668c5c
commit
32c2e8f4ae
1 changed files with 1 additions and 1 deletions
|
@ -526,7 +526,7 @@ def export_user(organisation, user):
|
|||
userobj = organisation.get_user(user)
|
||||
if userobj is None:
|
||||
msg = "User {} doesn't exist in organisation {}."
|
||||
sys.exit(msg.format(userobj.name, organisation.name))
|
||||
sys.exit(msg.format(user, organisation.name))
|
||||
|
||||
sys.stdout.write(userobj.export())
|
||||
|
||||
|
|
Loading…
Reference in a new issue