From 8eeddd287cccd257d6adc5fcbc22e0b19985999d Mon Sep 17 00:00:00 2001 From: Renz Christian Bagaporo Date: Wed, 21 Nov 2018 16:58:22 +0800 Subject: [PATCH] ldgen: catch exception with python3 compatible style Closes https://github.com/espressif/esp-idf/issues/2720 --- tools/ldgen/ldgen.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/ldgen/ldgen.py b/tools/ldgen/ldgen.py index bb70950d1..ca12fe8e8 100755 --- a/tools/ldgen/ldgen.py +++ b/tools/ldgen/ldgen.py @@ -91,8 +91,7 @@ def main(): script_model.fill(mapping_rules, sdkconfig) script_model.write(output_file) - - except Exception, e: + except Exception as e: print("linker script generation failed for %s\nERROR: %s" % (input_file.name, e.message)) # Delete the file so the entire build will fail; and not use an outdated script. os.remove(output_file.name)