Re: [PATCH 1/1] tools: fix TestFdtUtil()

2023-05-04 Thread Tom Rini
On Thu, Apr 20, 2023 at 08:03:43PM +0200, Heinrich Schuchardt wrote: > Variable old_outdir cannot be used before assignment. > The assignment must occur before the try block. > > tools/dtoc/test_fdt.py:796:26: > E0601: Using variable 'old_outdir' before assignment > (used-before-assignment) > >

Re: [PATCH 1/1] tools: fix TestFdtUtil()

2023-04-23 Thread Simon Glass
On Fri, 21 Apr 2023 at 06:03, Heinrich Schuchardt wrote: > > Variable old_outdir cannot be used before assignment. > The assignment must occur before the try block. > > tools/dtoc/test_fdt.py:796:26: > E0601: Using variable 'old_outdir' before assignment > (used-before-assignment) > > Add missing

[PATCH 1/1] tools: fix TestFdtUtil()

2023-04-20 Thread Heinrich Schuchardt
Variable old_outdir cannot be used before assignment. The assignment must occur before the try block. tools/dtoc/test_fdt.py:796:26: E0601: Using variable 'old_outdir' before assignment (used-before-assignment) Add missing space in assignment. Fixes: a004f29464d1 ("binman: Tidy up _SetupDtb() to