Skip to content

Commit c24f485

Browse files
committed
small fix
1 parent 4d3e35a commit c24f485

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

volatility/memtriage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ def parse_yarascan_data(data, out, output = "text"):
305305
]))
306306
out.write("\n\n")
307307
else:
308-
out.write("{0},{1},{2},{3}\n").format("Rule", "Owner", "Address", "Data"))
308+
out.write("{0},{1},{2},{3}\n".format("Rule", "Owner", "Address", "Data"))
309309
for rule, owner, addr, content in datas:
310310
out.write("{0},{1},{2},{3}\n".format(rule, owner, addr, content))
311311
out.write("\n\n")

0 commit comments

Comments
 (0)