From 5dd6f0c01dbb69522ab748efd41a920acca71f27 Mon Sep 17 00:00:00 2001 From: Ken Dreyer Date: Nov 20 2019 21:33:37 +0000 Subject: utils: fix whitespace in Pagure error message Prior to this change, Python would concatenate the two quoted strings together without a space, and fedpkg's error message would read "... to set atoken in your user configuration." Add a space between "a" and "token". Signed-off-by: Ken Dreyer --- diff --git a/fedpkg/utils.py b/fedpkg/utils.py index 3f084ee..8e2feb8 100644 --- a/fedpkg/utils.py +++ b/fedpkg/utils.py @@ -232,7 +232,7 @@ def get_pagure_token(config, cli_name): return config.get(conf_section, 'token') except (NoSectionError, NoOptionError): raise rpkgError( - 'Missing a Pagure token. Refer to "{0} request-repo -h" to set a' + 'Missing a Pagure token. Refer to "{0} request-repo -h" to set a ' 'token in your user configuration.'.format(cli_name))