Skip to content

Commit

Permalink
minimal fix regarding zsh and keepassx plugins (google#280)
Browse files Browse the repository at this point in the history
* table header "divider" had cname but no name

ValueError: Plugins declaring table headers ahead of time MUST specify 'name' for each column. Table header ({'cname': 'divider', 'type': 'Divider', 'name': ''},  ...

* table header "divider" had cname but no name

ValueError: Plugins declaring table headers ahead of time MUST specify 'name' for each column. Table header ({'cname': 'divider', 'type': 'Divider', 'name': ''},
  • Loading branch information
f-block authored and scudette committed Aug 7, 2017
1 parent 9536a0a commit e1de106
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rekall-core/rekall/plugins/linux/keepassx.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class Keepassx(heap_analysis.HeapAnalysis):
__name = "keepassx"

table_header = [
dict(name="", cname="divider", type="Divider"),
dict(name="divider", type="Divider"),
dict(name="task", hidden=True),
dict(name="entry", width=6),
dict(name="title", width=26),
Expand Down
2 changes: 1 addition & 1 deletion rekall-core/rekall/plugins/linux/zsh.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Zsh(heap_analysis.HeapAnalysis):
__name = "zsh"

table_header = [
dict(name="", cname="divider", type="Divider"),
dict(name="divider", type="Divider"),
dict(name="task", hidden=True),
dict(name="counter", width=8),
dict(name="started", width=24),
Expand Down

0 comments on commit e1de106

Please sign in to comment.