From 4bdeb2b3aa063c2772f5c44e52acbe16e915cc3a Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 24 Feb 2022 20:52:18 -0800 Subject: [PATCH] simplify warning message --- jc/parsers/xrandr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jc/parsers/xrandr.py b/jc/parsers/xrandr.py index a2c94271..871f2fcc 100644 --- a/jc/parsers/xrandr.py +++ b/jc/parsers/xrandr.py @@ -288,7 +288,7 @@ def _parse_device(next_lines: List[str], quiet: bool = False) -> Optional[Device device[k] = int(v) except ValueError and not quiet: jc.utils.warning_message( - [f"Error: {next_line} : {k} - {v} is not int-able"] + [f"{next_line} : {k} - {v} is not int-able"] ) while next_lines: