From 30397fc12f0541bec4c58614bc075eda04686bd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Thu, 18 May 2017 15:38:30 +0200 Subject: [PATCH] Pass full name of SVNer account as keyword arg --- attract/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/attract/cli.py b/attract/cli.py index 4bb284f..8aabb67 100644 --- a/attract/cli.py +++ b/attract/cli.py @@ -48,7 +48,7 @@ def create_svner_account(email, project_url): proj_id = proj['_id'] account, token = create_service_account(email, ['svner'], {'svner': {'project': proj_id}}, - f'SVNer for project {proj_id}') + full_name=f'SVNer for project {proj_id}') return account, token manager.add_command("attract", manager_attract)