insights-core icon indicating copy to clipboard operation
insights-core copied to clipboard

fix: 'NoneType' AttributeError in insights-info

Open JoySnow opened this issue 9 months ago • 0 comments

All Pull Requests:

Check all that apply:

  • [x] Have you followed the guidelines in our Contributing document, including the instructions about commit messages?
  • [x] Is this PR to correct an issue?
  • [ ] Is this PR an enhancement?

Complete Description of Additions/Changes:

fix this below error of insights-info run:

$ insights-info insights.specs.Specs.hosts  
Traceback (most recent call last):
  File "/Users/joy/Work/insights-core/venv/bin/insights-info", line 33, in <module>
    sys.exit(load_entry_point('insights-core', 'console_scripts', 'insights-info')())
  File "/Users/joy/Work/insights-core/insights/tools/query.py", line 412, in main
    ds = get_matching_datasources(args.paths)
  File "/Users/joy/Work/insights-core/insights/tools/query.py", line 193, in get_matching_datasources
    if matches(d, path):
  File "/Users/joy/Work/insights-core/insights/tools/query.py", line 177, in matches
    search_tgt = d.cmd.strip('/').split()[0].split('/')[-1]
AttributeError: 'NoneType' object has no attribute 'strip'

JoySnow avatar May 15 '24 02:05 JoySnow