BobBuildTool / bob

Bob build tool - Functional cross platform build-automation tool
https://bobbuildtool.dev/
GNU General Public License v3.0
76 stars 44 forks source link

show: fix crash with checkoutAssert #570

Closed rhubert closed 4 months ago

rhubert commented 4 months ago

Fix a regression of 0c40313b:

 File "pym/bob/cmds/show.py", line 54, in <listcomp>
   { k:v for k,v in a.getProperties().items() if not k.startswith("__") }
                    ^^^^^^^^^^^^^^^

AttributeError: 'dict' object has no attribute 'getProperties'

and add a test for this.

jkloetzke commented 4 months ago

Thanks.