mirror of
https://github.com/mandiant/capa.git
synced 2026-04-28 11:53:20 -07:00
fix: vverbose.py: render_call variable assigned but never used
Closes #3016
This commit is contained in:
committed by
Willi Ballenthin
parent
d3e2bac803
commit
527fb397ea
@@ -18,6 +18,8 @@
|
||||
|
||||
- fix: capabilities/common.py: if va: drops address 0x0 @williballenthin #3015
|
||||
|
||||
- fix: vverbose.py: render_call variable assigned but never used @williballenthin #3016
|
||||
|
||||
### capa Explorer Web
|
||||
|
||||
### capa Explorer IDA Pro plugin
|
||||
|
||||
@@ -101,7 +101,7 @@ def render_locations(
|
||||
render_call = v.render_short_call
|
||||
else:
|
||||
render_call = v.render_call
|
||||
s = f"{v.render_call(layout, location)}\nand {(len(locations) - 1)} more..."
|
||||
s = f"{render_call(layout, location)}\nand {(len(locations) - 1)} more..."
|
||||
console.write(hanging_indent(s, indent + 1))
|
||||
|
||||
elif len(locations) > 4:
|
||||
|
||||
Reference in New Issue
Block a user