Skip to content

Commit

Permalink
Update GdbSlicePrettyPrint.py to work with current arangovpack versio…
Browse files Browse the repository at this point in the history
…ns (#167)
  • Loading branch information
goedderz authored Jul 2, 2024
1 parent b6d049a commit 4e7f1f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/GdbSlicePrettyPrint.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ def to_string(self):
b = bytearray(length)
for i in range(0, length):
b[i] = int(vpack[i])
p = subprocess.Popen(["arangovpack", "--print-non-json"],
p = subprocess.Popen(["arangovpack", "--output-type", "json"],
stdin=subprocess.PIPE,
stdout=subprocess.PIPE)
s, e = p.communicate(b)
Expand Down

0 comments on commit 4e7f1f0

Please sign in to comment.