Skip to content
This repository was archived by the owner on Oct 18, 2020. It is now read-only.

Commit e1de106

Browse files
f-blockscudette
authored andcommitted
minimal fix regarding zsh and keepassx plugins (#280)
* 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': ''},
1 parent 9536a0a commit e1de106

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rekall-core/rekall/plugins/linux/keepassx.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class Keepassx(heap_analysis.HeapAnalysis):
4343
__name = "keepassx"
4444

4545
table_header = [
46-
dict(name="", cname="divider", type="Divider"),
46+
dict(name="divider", type="Divider"),
4747
dict(name="task", hidden=True),
4848
dict(name="entry", width=6),
4949
dict(name="title", width=26),

rekall-core/rekall/plugins/linux/zsh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class Zsh(heap_analysis.HeapAnalysis):
3939
__name = "zsh"
4040

4141
table_header = [
42-
dict(name="", cname="divider", type="Divider"),
42+
dict(name="divider", type="Divider"),
4343
dict(name="task", hidden=True),
4444
dict(name="counter", width=8),
4545
dict(name="started", width=24),

0 commit comments

Comments
 (0)