From 76b1cc55161465f9d2ac14f95405125c250cdce5 Mon Sep 17 00:00:00 2001 From: kannibalox Date: Mon, 31 Jul 2023 21:26:12 -0400 Subject: [PATCH] Remove debugging statements --- CHANGELOG.md | 6 ++++++ src/pyrosimple/config.py | 3 --- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index adbdb270..2f8f7f41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ ### Fixed +- Remove debugging statements + +## [2.10.1] - 2023-07-28 + +### Fixed + - `rtcontrol`: Fix `--json` error ## [2.10.0] - 2023-07-24 diff --git a/src/pyrosimple/config.py b/src/pyrosimple/config.py index 478e654c..22b57174 100644 --- a/src/pyrosimple/config.py +++ b/src/pyrosimple/config.py @@ -132,7 +132,6 @@ def expand_rc(rcfile: Path) -> List[Tuple[str, str]]: if priv_string_match: str_result = "" for arg in RCLexer(priv_string_match.group(2)): - print(arg) if arg.startswith("("): str_result += replacements.get(arg[1:-1], "") if arg.startswith('"'): @@ -155,8 +154,6 @@ def expand_rc(rcfile: Path) -> List[Tuple[str, str]]: str_result += arg[1:-1] val = str_result data.append((key, val)) - print(key, val) - print(replacements) return data