From 06f6eeee3a7aaea881d7b399454762f65c8cec87 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Wed, 7 Oct 2020 08:29:32 +0200 Subject: Added Linux exit status and output conversion to macos --- src/config.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/config.py') diff --git a/src/config.py b/src/config.py index 0390194..e77a94d 100644 --- a/src/config.py +++ b/src/config.py @@ -6,7 +6,7 @@ # By: charles +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2020/07/15 18:24:19 by charles #+# #+# # -# Updated: 2020/10/06 17:06:17 by cacharle ### ########.fr # +# Updated: 2020/10/07 08:07:25 by charles ### ########.fr # # # # ############################################################################ # @@ -93,3 +93,5 @@ REFERENCE_ERROR_BEGIN = REFERENCE_PATH + ": line 0: " TERM_COLS = shutil.get_terminal_size().columns if TERM_COLS < 40: raise RuntimeError("You're terminal isn't wide enough") + +PLATFORM = os.uname().sysname -- cgit