From f852b8246a8f9e5f7d9144fed3a0daa4eddfe035 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Tue, 30 Jun 2020 11:50:37 -0700 Subject: [PATCH] wrap warning message --- jc/utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jc/utils.py b/jc/utils.py index b5f9a4f0..4c4d9f44 100644 --- a/jc/utils.py +++ b/jc/utils.py @@ -66,7 +66,8 @@ def compatibility(mod_name, compatible): if not platform_found: mod = mod_name.split('.')[-1] compat_list = ', '.join(compatible) - warning_message(f'{mod} parser not compatible with your OS ({sys.platform}).\n Compatible platforms: {compat_list}') + warning_message(f'{mod} parser not compatible with your OS ({sys.platform}).\n' + f' Compatible platforms: {compat_list}') def has_data(data):