Merge branch 'bugfix/fixed-unsatisfiable-condition_v4.4' into 'release/v4.4'

Fixed comparison with ESP_MONITOR_DECODE (v4.4)

See merge request espressif/esp-idf!18334
This commit is contained in:
Roland Dobai 2022-06-01 16:12:40 +08:00
commit f1fbbf3171

View File

@ -32,7 +32,7 @@ def get_parser(): # type: () -> argparse.ArgumentParser
'--disable-address-decoding', '-d',
help="Don't print lines about decoded addresses from the application ELF file",
action='store_true',
default=os.environ.get('ESP_MONITOR_DECODE') == 0
default=os.getenv('ESP_MONITOR_DECODE') == '0'
)
parser.add_argument(