# HG changeset patch # User Paul Boddie # Date 1485207074 -3600 # Node ID 539b8b3433d3ad47dcc5de65ad5522712d516e9a # Parent d1515ba2585958a8ec7143a9704869e1e7858ff1 Fixed the test for an absence of attribute names for an access. diff -r d1515ba25859 -r 539b8b3433d3 deducer.py --- a/deducer.py Mon Jan 23 13:04:02 2017 +0100 +++ b/deducer.py Mon Jan 23 22:31:14 2017 +0100 @@ -852,7 +852,7 @@ # Plain name accesses do not employ attributes and are # ignored. - if attrname_str: + if not attrname_str: continue attrnames = get_attrnames(attrname_str)