From d91fd080f2c63a9a45032fb18439d25a08f3191f Mon Sep 17 00:00:00 2001 From: selplacei <35859522+selplacei@users.noreply.github.com> Date: Mon, 24 Feb 2020 19:41:59 -0800 Subject: [PATCH] Fix authors in setup.py The names of the authors got concatenated because of missing commas. --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index ce6f541..ee10186 100644 --- a/setup.py +++ b/setup.py @@ -15,8 +15,8 @@ version=version, url='https://github.com/CabbageDevelopment/qasync', author=', '.join(('Sam McCormack', - 'Gerard Marull-Paretas' - 'Mark Harviston' + 'Gerard Marull-Paretas', + 'Mark Harviston', 'Arve Knudsen')), author_email=', '.join(('contact@cabbagedevelopment.com', 'gerard@teslabs.com',